Raw File
openapi3.json
{
  "components": {
    "responses": {
      "SMTPNotEnabledError": {
        "description": "(empty)"
      },
      "acceptedResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "AcceptedResponse"
      },
      "addPermissionResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "message": {
                  "type": "string"
                },
                "permissionId": {
                  "format": "int64",
                  "type": "integer"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "adminCreateUserResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/UserIdDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "adminGetSettingsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SettingsBag"
            }
          }
        },
        "description": "(empty)"
      },
      "adminGetStatsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/AdminStats"
            }
          }
        },
        "description": "(empty)"
      },
      "adminGetUserAuthTokensResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserToken"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "badRequestError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "BadRequestError is returned when the request is invalid and it cannot be processed."
      },
      "calculateDashboardDiffResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "format": "uint8",
                "type": "integer"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "conflictError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "ConflictError"
      },
      "contentResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "format": "uint8",
                "type": "integer"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "createCorrelationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/CreateCorrelationResponseBody"
            }
          }
        },
        "description": "(empty)"
      },
      "createDashboardSnapshotResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "deleteKey": {
                  "description": "Unique key used to delete the snapshot. It is different from the key so that only the creator can delete the snapshot.",
                  "type": "string"
                },
                "deleteUrl": {
                  "type": "string"
                },
                "id": {
                  "description": "Snapshot id",
                  "format": "int64",
                  "type": "integer"
                },
                "key": {
                  "description": "Unique key",
                  "type": "string"
                },
                "url": {
                  "type": "string"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "createOrUpdateDatasourceResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "datasource": {
                  "$ref": "#/components/schemas/DataSource"
                },
                "id": {
                  "description": "ID Identifier of the new data source.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the deleted dashboard.",
                  "example": "Data source added",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the new data source.",
                  "example": "My Data source",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "name",
                "message",
                "datasource"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "createOrgResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "message": {
                  "description": "Message Message of the created org.",
                  "example": "Data source added",
                  "type": "string"
                },
                "orgId": {
                  "description": "ID Identifier of the created org.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                }
              },
              "required": [
                "orgId",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "createPlaylistResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Playlist"
            }
          }
        },
        "description": "(empty)"
      },
      "createReportResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "type": "string"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "createRoleResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RoleDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "createServiceAccountResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ServiceAccountDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "createTeamResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "message": {
                  "type": "string"
                },
                "teamId": {
                  "format": "int64",
                  "type": "integer"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "createTokenResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/NewApiKeyResult"
            }
          }
        },
        "description": "(empty)"
      },
      "dashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DashboardFullWithMeta"
            }
          }
        },
        "description": "(empty)"
      },
      "dashboardVersionResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DashboardVersionMeta"
            }
          }
        },
        "description": "(empty)"
      },
      "dashboardVersionsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/DashboardVersionDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "deleteAlertNotificationChannelResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the deleted notification channel.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the deleted notificatiton channel.",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "deleteCorrelationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DeleteCorrelationResponseBody"
            }
          }
        },
        "description": "(empty)"
      },
      "deleteDashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the deleted dashboard.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the deleted dashboard.",
                  "example": "Dashboard My Dashboard deleted",
                  "type": "string"
                },
                "title": {
                  "description": "Title Title of the deleted dashboard.",
                  "example": "My Dashboard",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "title",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "deleteDataSourceByNameResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the deleted data source.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the deleted dashboard.",
                  "example": "Dashboard My Dashboard deleted",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "deleteFolderResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the deleted folder.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the deleted folder.",
                  "example": "Folder My Folder deleted",
                  "type": "string"
                },
                "title": {
                  "description": "Title of the deleted folder.",
                  "example": "My Folder",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "title",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "folderResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Folder"
            }
          }
        },
        "description": "(empty)"
      },
      "forbiddenError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource."
      },
      "genericError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "A GenericError is the default error message that is generated.\nFor certain status codes there are more appropriate error structures."
      },
      "getAPIkeyResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/ApiKeyDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getAccessControlStatusResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Status"
            }
          }
        },
        "description": "(empty)"
      },
      "getAlertNotificationChannelResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/AlertNotification"
            }
          }
        },
        "description": "(empty)"
      },
      "getAlertNotificationChannelsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/AlertNotification"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getAlertNotificationLookupResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/AlertNotificationLookup"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getAlertResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LegacyAlert"
            }
          }
        },
        "description": "(empty)"
      },
      "getAlertsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/AlertListItemDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getAllPermissionseResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DataSourcePermissionsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getAllRolesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/RoleDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getAnnotationByIDResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ItemDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getAnnotationTagsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/GetAnnotationTagsResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getAnnotationsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/ItemDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getCorrelationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Correlation"
            }
          }
        },
        "description": "(empty)"
      },
      "getCorrelationsBySourceUIDResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/Correlation"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getCorrelationsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/Correlation"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getCurrentOrgResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/OrgDetailsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getCustomPermissionsReportResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/CustomPermissionsRecordDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getDashboardPermissionsListResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/DashboardACLInfoDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getDashboardSnapshotResponse": {
        "description": "(empty)"
      },
      "getDashboardStatesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/AlertStateInfoDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getDashboardsTagsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/DashboardTagCloudItem"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getDataSourceIDResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the data source.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                }
              },
              "required": [
                "id"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "getDataSourceResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DataSource"
            }
          }
        },
        "description": "(empty)"
      },
      "getDataSourcesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/DataSourceList"
            }
          }
        },
        "description": "(empty)"
      },
      "getFolderPermissionListResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/DashboardACLInfoDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getFoldersResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/FolderSearchHit"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getHomeDashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/GetHomeDashboardResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getLibraryElementConnectionsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LibraryElementConnectionsResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getLibraryElementResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LibraryElementResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getLibraryElementsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/LibraryElementSearchResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getLicenseTokenResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Token"
            }
          }
        },
        "description": "(empty)"
      },
      "getOrgByIDResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/OrgDetailsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getOrgByNameResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/OrgDetailsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getOrgUsersForCurrentOrgLookupResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserLookupDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getOrgUsersForCurrentOrgResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/OrgUserDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getOrgUsersResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/OrgUserDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getPendingOrgInvitesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/TempUserDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getPlaylistDashboardsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PlaylistDashboardsSlice"
            }
          }
        },
        "description": "(empty)"
      },
      "getPlaylistItemsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/PlaylistItem"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getPlaylistResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Model"
            }
          }
        },
        "description": "(empty)"
      },
      "getPreferencesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Prefs"
            }
          }
        },
        "description": "(empty)"
      },
      "getQueryHistoryDeleteQueryResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/QueryHistoryDeleteQueryResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getQueryHistoryMigrationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/QueryHistoryMigrationResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getQueryHistoryResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/QueryHistoryResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getQueryHistorySearchResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/QueryHistorySearchResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "getQuotaResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserQuotaDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getReportResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ConfigDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getReportSettingsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SettingsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getReportsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/ConfigDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getRoleAssignmentsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RoleAssignmentsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getRoleResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RoleDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getSharingOptionsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "externalEnabled": {
                  "type": "boolean"
                },
                "externalSnapshotName": {
                  "type": "string"
                },
                "externalSnapshotURL": {
                  "type": "string"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "getSignedInUserOrgListResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserOrgDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getSignedInUserTeamListResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/TeamDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getStatusResponse": {
        "description": "(empty)"
      },
      "getSyncStatusResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ActiveSyncStatusDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getTeamByIDResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TeamDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "getTeamGroupsApiResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/TeamGroupDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getTeamMembersResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/TeamMemberDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getUserAuthTokensResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserToken"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getUserOrgListResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/UserOrgDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "getUserTeamsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/TeamDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "helpFlagResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "helpFlags1": {
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "type": "string"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "importDashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ImportDashboardResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "internalServerError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "InternalServerError is a general error indicating something went wrong internally."
      },
      "listBuiltinRolesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "additionalProperties": {
                "items": {
                  "$ref": "#/components/schemas/RoleDTO"
                },
                "type": "array"
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "listRecordingRulesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/RecordingRuleJSON"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "listRolesResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/RoleDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "listSortOptionsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "description": {
                  "type": "string"
                },
                "displayName": {
                  "type": "string"
                },
                "meta": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "listTokensResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TokenDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "notFoundError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "NotFoundError is returned when the requested resource was not found."
      },
      "okResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SuccessResponseBody"
            }
          }
        },
        "description": "An OKResponse is returned if the request was successful."
      },
      "pauseAlertResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "alertId": {
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "type": "string"
                },
                "state": {
                  "description": "Alert result state\nrequired true",
                  "type": "string"
                }
              },
              "required": [
                "alertId",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "pauseAlertsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "alertsAffected": {
                  "description": "AlertsAffected is the number of the affected alerts.",
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "type": "string"
                },
                "state": {
                  "description": "Alert result state\nrequired true",
                  "type": "string"
                }
              },
              "required": [
                "alertsAffected",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "postAPIkeyResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/NewApiKeyResult"
            }
          }
        },
        "description": "(empty)"
      },
      "postAnnotationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID Identifier of the created annotation.",
                  "example": 65,
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "description": "Message Message of the created annotation.",
                  "type": "string"
                }
              },
              "required": [
                "id",
                "message"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "postDashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "description": "ID The unique identifier (id) of the created/updated dashboard.",
                  "example": "1",
                  "type": "string"
                },
                "status": {
                  "description": "Status status of the response.",
                  "example": "success",
                  "type": "string"
                },
                "title": {
                  "description": "Slug The slug of the dashboard.",
                  "example": "my-dashboard",
                  "type": "string"
                },
                "uid": {
                  "description": "UID The unique identifier (uid) of the created/updated dashboard.",
                  "example": "nHz3SXiiz",
                  "type": "string"
                },
                "url": {
                  "description": "URL The relative URL for accessing the created/updated dashboard.",
                  "example": "/d/nHz3SXiiz/my-dashboard",
                  "type": "string"
                },
                "version": {
                  "description": "Version The version of the dashboard.",
                  "example": 2,
                  "format": "int64",
                  "type": "integer"
                }
              },
              "required": [
                "status",
                "title",
                "version",
                "id",
                "uid",
                "url"
              ],
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "postRenewLicenseTokenResponse": {
        "description": "(empty)"
      },
      "preconditionFailedError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "PreconditionFailedError"
      },
      "queryMetricsWithExpressionsRespons": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/QueryDataResponse"
            }
          }
        },
        "description": "(empty)"
      },
      "recordingRuleResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RecordingRuleJSON"
            }
          }
        },
        "description": "(empty)"
      },
      "recordingRuleWriteTargetResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/PrometheusRemoteWriteTargetJSON"
            }
          }
        },
        "description": "(empty)"
      },
      "refreshLicenseStatsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ActiveUserStats"
            }
          }
        },
        "description": "(empty)"
      },
      "retrieveServiceAccountResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ServiceAccountDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "searchDashboardSnapshotsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/DashboardSnapshotDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "searchOrgServiceAccountsWithPagingResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SearchServiceAccountsResult"
            }
          }
        },
        "description": "(empty)"
      },
      "searchOrgsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "items": {
                "$ref": "#/components/schemas/OrgDTO"
              },
              "type": "array"
            }
          }
        },
        "description": "(empty)"
      },
      "searchPlaylistsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Playlists"
            }
          }
        },
        "description": "(empty)"
      },
      "searchResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/HitList"
            }
          }
        },
        "description": "(empty)"
      },
      "searchTeamsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SearchTeamQueryResult"
            }
          }
        },
        "description": "(empty)"
      },
      "searchUsersResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/SearchUserQueryResult"
            }
          }
        },
        "description": "(empty)"
      },
      "setRoleAssignmentsResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/RoleAssignmentsDTO"
            }
          }
        },
        "description": "(empty)"
      },
      "testAlertResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/AlertTestResult"
            }
          }
        },
        "description": "(empty)"
      },
      "trimDashboardResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/TrimDashboardFullWithMeta"
            }
          }
        },
        "description": "(empty)"
      },
      "unauthorisedError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "UnauthorizedError is returned when the request is not authenticated."
      },
      "unprocessableEntityError": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/ErrorResponseBody"
            }
          }
        },
        "description": "UnprocessableEntityError"
      },
      "updateCorrelationResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/UpdateCorrelationResponseBody"
            }
          }
        },
        "description": "(empty)"
      },
      "updatePlaylistResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Model"
            }
          }
        },
        "description": "(empty)"
      },
      "updateServiceAccountResponse": {
        "content": {
          "application/json": {
            "schema": {
              "properties": {
                "id": {
                  "format": "int64",
                  "type": "integer"
                },
                "message": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "serviceaccount": {
                  "$ref": "#/components/schemas/ServiceAccountProfileDTO"
                }
              },
              "type": "object"
            }
          }
        },
        "description": "(empty)"
      },
      "userResponse": {
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/UserProfileDTO"
            }
          }
        },
        "description": "(empty)"
      }
    },
    "schemas": {
      "Ack": {
        "type": "object"
      },
      "ActiveSyncStatusDTO": {
        "description": "ActiveSyncStatusDTO holds the information for LDAP background Sync",
        "properties": {
          "enabled": {
            "type": "boolean"
          },
          "nextSync": {
            "format": "date-time",
            "type": "string"
          },
          "prevSync": {
            "$ref": "#/components/schemas/SyncResult"
          },
          "schedule": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "ActiveUserStats": {
        "properties": {
          "active_admins_and_editors": {
            "format": "int64",
            "type": "integer"
          },
          "active_users": {
            "format": "int64",
            "type": "integer"
          },
          "active_viewers": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AddCommand": {
        "properties": {
          "name": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          },
          "secondsToLive": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AddDataSourceCommand": {
        "description": "Also acts as api DTO",
        "properties": {
          "access": {
            "$ref": "#/components/schemas/DsAccess"
          },
          "basicAuth": {
            "type": "boolean"
          },
          "basicAuthUser": {
            "type": "string"
          },
          "database": {
            "type": "string"
          },
          "isDefault": {
            "type": "boolean"
          },
          "jsonData": {
            "$ref": "#/components/schemas/Json"
          },
          "name": {
            "type": "string"
          },
          "secureJsonData": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "user": {
            "type": "string"
          },
          "withCredentials": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "AddInviteForm": {
        "properties": {
          "loginOrEmail": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          },
          "sendEmail": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "AddOrgUserCommand": {
        "properties": {
          "loginOrEmail": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "AddPermissionDTO": {
        "properties": {
          "builtinRole": {
            "type": "string"
          },
          "permission": {
            "$ref": "#/components/schemas/DsPermissionType"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AddServiceAccountTokenCommand": {
        "properties": {
          "name": {
            "type": "string"
          },
          "secondsToLive": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AddTeamMemberCommand": {
        "properties": {
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AddTeamRoleCommand": {
        "properties": {
          "roleUid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AddUserRoleCommand": {
        "properties": {
          "global": {
            "type": "boolean"
          },
          "roleUid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Address": {
        "properties": {
          "address1": {
            "type": "string"
          },
          "address2": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "country": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "zipCode": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AdminCreateUserForm": {
        "properties": {
          "email": {
            "type": "string"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "password": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AdminStats": {
        "properties": {
          "activeAdmins": {
            "format": "int64",
            "type": "integer"
          },
          "activeEditors": {
            "format": "int64",
            "type": "integer"
          },
          "activeSessions": {
            "format": "int64",
            "type": "integer"
          },
          "activeUsers": {
            "format": "int64",
            "type": "integer"
          },
          "activeViewers": {
            "format": "int64",
            "type": "integer"
          },
          "admins": {
            "format": "int64",
            "type": "integer"
          },
          "alerts": {
            "format": "int64",
            "type": "integer"
          },
          "dailyActiveAdmins": {
            "format": "int64",
            "type": "integer"
          },
          "dailyActiveEditors": {
            "format": "int64",
            "type": "integer"
          },
          "dailyActiveSessions": {
            "format": "int64",
            "type": "integer"
          },
          "dailyActiveUsers": {
            "format": "int64",
            "type": "integer"
          },
          "dailyActiveViewers": {
            "format": "int64",
            "type": "integer"
          },
          "dashboards": {
            "format": "int64",
            "type": "integer"
          },
          "datasources": {
            "format": "int64",
            "type": "integer"
          },
          "editors": {
            "format": "int64",
            "type": "integer"
          },
          "monthlyActiveUsers": {
            "format": "int64",
            "type": "integer"
          },
          "orgs": {
            "format": "int64",
            "type": "integer"
          },
          "playlists": {
            "format": "int64",
            "type": "integer"
          },
          "snapshots": {
            "format": "int64",
            "type": "integer"
          },
          "stars": {
            "format": "int64",
            "type": "integer"
          },
          "tags": {
            "format": "int64",
            "type": "integer"
          },
          "users": {
            "format": "int64",
            "type": "integer"
          },
          "viewers": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AdminUpdateUserPasswordForm": {
        "properties": {
          "password": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AdminUpdateUserPermissionsForm": {
        "properties": {
          "isGrafanaAdmin": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "Alert": {
        "properties": {
          "activeAt": {
            "format": "date-time",
            "type": "string"
          },
          "annotations": {
            "$ref": "#/components/schemas/overrideLabels"
          },
          "labels": {
            "$ref": "#/components/schemas/overrideLabels"
          },
          "state": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "labels",
          "annotations",
          "state",
          "value"
        ],
        "title": "Alert has info for an alert.",
        "type": "object"
      },
      "AlertDiscovery": {
        "properties": {
          "alerts": {
            "items": {
              "$ref": "#/components/schemas/Alert"
            },
            "type": "array"
          }
        },
        "required": [
          "alerts"
        ],
        "title": "AlertDiscovery has info for all active alerts.",
        "type": "object"
      },
      "AlertInstancesResponse": {
        "properties": {
          "instances": {
            "description": "Instances is an array of arrow encoded dataframes\neach frame has a single row, and a column for each instance (alert identified by unique labels) with a boolean value (firing/not firing)",
            "items": {
              "items": {
                "format": "uint8",
                "type": "integer"
              },
              "type": "array"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "AlertListItemDTO": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardSlug": {
            "type": "string"
          },
          "dashboardUid": {
            "type": "string"
          },
          "evalData": {
            "$ref": "#/components/schemas/Json"
          },
          "evalDate": {
            "format": "date-time",
            "type": "string"
          },
          "executionError": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "newStateDate": {
            "format": "date-time",
            "type": "string"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          },
          "state": {
            "$ref": "#/components/schemas/AlertStateType"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertManager": {
        "properties": {
          "url": {
            "type": "string"
          }
        },
        "title": "AlertManager models a configured Alert Manager.",
        "type": "object"
      },
      "AlertManagerNotReady": {
        "type": "object"
      },
      "AlertManagersResult": {
        "properties": {
          "activeAlertManagers": {
            "items": {
              "$ref": "#/components/schemas/AlertManager"
            },
            "type": "array"
          },
          "droppedAlertManagers": {
            "items": {
              "$ref": "#/components/schemas/AlertManager"
            },
            "type": "array"
          }
        },
        "title": "AlertManagersResult contains the result from querying the alertmanagers endpoint.",
        "type": "object"
      },
      "AlertNotification": {
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "disableResolveMessage": {
            "type": "boolean"
          },
          "frequency": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDefault": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "secureFields": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "sendReminder": {
            "type": "boolean"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertNotificationLookup": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDefault": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertQuery": {
        "properties": {
          "datasourceUid": {
            "description": "Grafana data source unique identifier; it should be '-100' for a Server Side Expression operation.",
            "type": "string"
          },
          "model": {
            "description": "JSON is the raw JSON query and includes the above properties as well as custom properties.",
            "type": "object"
          },
          "queryType": {
            "description": "QueryType is an optional identifier for the type of query.\nIt can be used to distinguish different types of queries.",
            "type": "string"
          },
          "refId": {
            "description": "RefID is the unique identifier of the query, set by the frontend call.",
            "type": "string"
          },
          "relativeTimeRange": {
            "$ref": "#/components/schemas/RelativeTimeRange"
          }
        },
        "title": "AlertQuery represents a single query associated with an alert definition.",
        "type": "object"
      },
      "AlertResponse": {
        "properties": {
          "data": {
            "$ref": "#/components/schemas/AlertDiscovery"
          },
          "error": {
            "type": "string"
          },
          "errorType": {
            "$ref": "#/components/schemas/ErrorType"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "type": "object"
      },
      "AlertRuleGroup": {
        "properties": {
          "folderUid": {
            "type": "string"
          },
          "interval": {
            "format": "int64",
            "type": "integer"
          },
          "rules": {
            "items": {
              "$ref": "#/components/schemas/ProvisionedAlertRule"
            },
            "type": "array"
          },
          "title": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertRuleGroupMetadata": {
        "properties": {
          "interval": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AlertStateInfoDTO": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "newStateDate": {
            "format": "date-time",
            "type": "string"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          },
          "state": {
            "$ref": "#/components/schemas/AlertStateType"
          }
        },
        "type": "object"
      },
      "AlertStateType": {
        "type": "string"
      },
      "AlertTestCommand": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "AlertTestResult": {
        "properties": {
          "conditionEvals": {
            "type": "string"
          },
          "error": {
            "type": "string"
          },
          "firing": {
            "type": "boolean"
          },
          "logs": {
            "items": {
              "$ref": "#/components/schemas/AlertTestResultLog"
            },
            "type": "array"
          },
          "matches": {
            "items": {
              "$ref": "#/components/schemas/EvalMatch"
            },
            "type": "array"
          },
          "state": {
            "$ref": "#/components/schemas/AlertStateType"
          },
          "timeMs": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertTestResultLog": {
        "properties": {
          "data": {},
          "message": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "AlertingRule": {
        "description": "adapted from cortex",
        "properties": {
          "alerts": {
            "items": {
              "$ref": "#/components/schemas/Alert"
            },
            "type": "array"
          },
          "annotations": {
            "$ref": "#/components/schemas/overrideLabels"
          },
          "duration": {
            "format": "double",
            "type": "number"
          },
          "evaluationTime": {
            "format": "double",
            "type": "number"
          },
          "health": {
            "type": "string"
          },
          "labels": {
            "$ref": "#/components/schemas/overrideLabels"
          },
          "lastError": {
            "type": "string"
          },
          "lastEvaluation": {
            "format": "date-time",
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "query": {
            "type": "string"
          },
          "state": {
            "description": "State can be \"pending\", \"firing\", \"inactive\".",
            "type": "string"
          },
          "type": {
            "$ref": "#/components/schemas/RuleType"
          }
        },
        "required": [
          "name",
          "query",
          "health",
          "type",
          "state",
          "annotations",
          "alerts"
        ],
        "type": "object"
      },
      "AlertingStatus": {
        "properties": {
          "alertmanagersChoice": {
            "enum": [
              "all",
              "internal",
              "external"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "AnnotationActions": {
        "properties": {
          "canAdd": {
            "type": "boolean"
          },
          "canDelete": {
            "type": "boolean"
          },
          "canEdit": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "AnnotationPermission": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/AnnotationActions"
          },
          "organization": {
            "$ref": "#/components/schemas/AnnotationActions"
          }
        },
        "type": "object"
      },
      "ApiKeyDTO": {
        "properties": {
          "accessControl": {
            "$ref": "#/components/schemas/Metadata"
          },
          "expiration": {
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "ApiRuleNode": {
        "properties": {
          "alert": {
            "type": "string"
          },
          "annotations": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "expr": {
            "type": "string"
          },
          "for": {
            "type": "string"
          },
          "labels": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "record": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Authorization": {
        "properties": {
          "credentials": {
            "$ref": "#/components/schemas/Secret"
          },
          "credentials_file": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "title": "Authorization contains HTTP authorization credentials.",
        "type": "object"
      },
      "BasicAuth": {
        "properties": {
          "password": {
            "$ref": "#/components/schemas/Secret"
          },
          "password_file": {
            "type": "string"
          },
          "username": {
            "type": "string"
          }
        },
        "title": "BasicAuth contains basic HTTP authentication credentials.",
        "type": "object"
      },
      "BrandingOptionsDTO": {
        "properties": {
          "emailFooterLink": {
            "type": "string"
          },
          "emailFooterMode": {
            "type": "string"
          },
          "emailFooterText": {
            "type": "string"
          },
          "emailLogoUrl": {
            "type": "string"
          },
          "reportLogoUrl": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CalculateDiffTarget": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "unsavedDashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ChangeUserPasswordCommand": {
        "properties": {
          "newPassword": {
            "type": "string"
          },
          "oldPassword": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "ConfFloat64": {
        "description": "ConfFloat64 is a float64. It Marshals float64 values of NaN of Inf\nto null.",
        "format": "double",
        "type": "number"
      },
      "Config": {
        "properties": {
          "global": {
            "$ref": "#/components/schemas/GlobalConfig"
          },
          "inhibit_rules": {
            "items": {
              "$ref": "#/components/schemas/InhibitRule"
            },
            "type": "array"
          },
          "mute_time_intervals": {
            "items": {
              "$ref": "#/components/schemas/MuteTimeInterval"
            },
            "type": "array"
          },
          "route": {
            "$ref": "#/components/schemas/Route"
          },
          "templates": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "title": "Config is the top-level configuration for Alertmanager's config files.",
        "type": "object"
      },
      "ConfigDTO": {
        "description": "ConfigDTO is model representation in transfer",
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardName": {
            "type": "string"
          },
          "dashboardUid": {
            "type": "string"
          },
          "dashboards": {
            "items": {
              "$ref": "#/components/schemas/DashboardDTO"
            },
            "type": "array"
          },
          "enableCsv": {
            "type": "boolean"
          },
          "enableDashboardUrl": {
            "type": "boolean"
          },
          "formats": {
            "items": {
              "$ref": "#/components/schemas/Type"
            },
            "type": "array"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "message": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "options": {
            "$ref": "#/components/schemas/ReportOptionsDTO"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "recipients": {
            "type": "string"
          },
          "replyTo": {
            "type": "string"
          },
          "schedule": {
            "$ref": "#/components/schemas/ScheduleDTO"
          },
          "state": {
            "$ref": "#/components/schemas/State"
          },
          "templateVars": {
            "type": "object"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ContactPoints": {
        "items": {
          "$ref": "#/components/schemas/EmbeddedContactPoint"
        },
        "type": "array"
      },
      "Correlation": {
        "description": "Correlation is the model for correlations definitions",
        "properties": {
          "config": {
            "$ref": "#/components/schemas/CorrelationConfig"
          },
          "description": {
            "description": "Description of the correlation",
            "example": "Logs to Traces",
            "type": "string"
          },
          "label": {
            "description": "Label identifying the correlation",
            "example": "My Label",
            "type": "string"
          },
          "sourceUID": {
            "description": "UID of the data source the correlation originates from",
            "example": "d0oxYRg4z",
            "type": "string"
          },
          "targetUID": {
            "description": "UID of the data source the correlation points to",
            "example": "PE1C5CBDA0504A6A3",
            "type": "string"
          },
          "uid": {
            "description": "Unique identifier of the correlation",
            "example": "50xhMlg9k",
            "type": "string"
          }
        },
        "type": "object"
      },
      "CorrelationConfig": {
        "properties": {
          "field": {
            "description": "Field used to attach the correlation link",
            "example": "message",
            "type": "string"
          },
          "target": {
            "additionalProperties": false,
            "description": "Target data query",
            "example": {
              "expr": "job=app"
            },
            "type": "object"
          },
          "type": {
            "$ref": "#/components/schemas/CorrelationConfigType"
          }
        },
        "required": [
          "field",
          "type",
          "target"
        ],
        "type": "object"
      },
      "CorrelationConfigType": {
        "type": "string"
      },
      "CorrelationConfigUpdateDTO": {
        "properties": {
          "field": {
            "description": "Field used to attach the correlation link",
            "example": "message",
            "type": "string"
          },
          "target": {
            "additionalProperties": false,
            "description": "Target data query",
            "example": {
              "expr": "job=app"
            },
            "type": "object"
          },
          "type": {
            "$ref": "#/components/schemas/CorrelationConfigType"
          }
        },
        "type": "object"
      },
      "CreateAlertNotificationCommand": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "frequency": {
            "type": "string"
          },
          "isDefault": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "secureSettings": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "sendReminder": {
            "type": "boolean"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateCorrelationCommand": {
        "description": "CreateCorrelationCommand is the command for creating a correlation",
        "properties": {
          "config": {
            "$ref": "#/components/schemas/CorrelationConfig"
          },
          "description": {
            "description": "Optional description of the correlation",
            "example": "Logs to Traces",
            "type": "string"
          },
          "label": {
            "description": "Optional label identifying the correlation",
            "example": "My label",
            "type": "string"
          },
          "targetUID": {
            "description": "Target data source UID to which the correlation is created. required if config.type = query",
            "example": "PE1C5CBDA0504A6A3",
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateCorrelationResponseBody": {
        "description": "CreateCorrelationResponse is the response struct for CreateCorrelationCommand",
        "properties": {
          "message": {
            "example": "Correlation created",
            "type": "string"
          },
          "result": {
            "$ref": "#/components/schemas/Correlation"
          }
        },
        "type": "object"
      },
      "CreateDashboardSnapshotCommand": {
        "properties": {
          "Result": {
            "$ref": "#/components/schemas/DashboardSnapshot"
          },
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "deleteKey": {
            "description": "Unique key used to delete the snapshot. It is different from the `key` so that only the creator can delete the snapshot. Required if `external` is `true`.",
            "type": "string"
          },
          "expires": {
            "default": 0,
            "description": "When the snapshot should expire in seconds in seconds. Default is never to expire.",
            "format": "int64",
            "type": "integer"
          },
          "external": {
            "default": false,
            "description": "these are passed when storing an external snapshot ref\nSave the snapshot on an external server rather than locally.",
            "type": "boolean"
          },
          "key": {
            "description": "Define the unique key. Required if `external` is `true`.",
            "type": "string"
          },
          "name": {
            "description": "Snapshot name",
            "type": "string"
          }
        },
        "required": [
          "dashboard"
        ],
        "type": "object"
      },
      "CreateFolderCommand": {
        "properties": {
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateLibraryElementCommand": {
        "description": "CreateLibraryElementCommand is the command for adding a LibraryElement",
        "properties": {
          "folderId": {
            "description": "ID of the folder where the library element is stored.",
            "format": "int64",
            "type": "integer"
          },
          "folderUid": {
            "description": "UID of the folder where the library element is stored.",
            "type": "string"
          },
          "kind": {
            "description": "Kind of element to create, Use 1 for library panels or 2 for c.\nDescription:\n1 - library panels\n2 - library variables",
            "enum": [
              1,
              2
            ],
            "format": "int64",
            "type": "integer"
          },
          "model": {
            "description": "The JSON model for the library element.",
            "type": "object"
          },
          "name": {
            "description": "Name of the library element.",
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateOrUpdateConfigCmd": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardUid": {
            "type": "string"
          },
          "dashboards": {
            "items": {
              "$ref": "#/components/schemas/DashboardDTO"
            },
            "type": "array"
          },
          "enableCsv": {
            "type": "boolean"
          },
          "enableDashboardUrl": {
            "type": "boolean"
          },
          "formats": {
            "items": {
              "$ref": "#/components/schemas/Type"
            },
            "type": "array"
          },
          "message": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "options": {
            "$ref": "#/components/schemas/ReportOptionsDTO"
          },
          "recipients": {
            "type": "string"
          },
          "replyTo": {
            "type": "string"
          },
          "schedule": {
            "$ref": "#/components/schemas/ScheduleDTO"
          },
          "state": {
            "$ref": "#/components/schemas/State"
          },
          "templateVars": {
            "type": "object"
          }
        },
        "type": "object"
      },
      "CreateOrgCommand": {
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreatePlaylistCommand": {
        "properties": {
          "interval": {
            "type": "string"
          },
          "items": {
            "items": {
              "$ref": "#/components/schemas/PlaylistItem"
            },
            "type": "array"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateQueryInQueryHistoryCommand": {
        "description": "CreateQueryInQueryHistoryCommand is the command for adding query history",
        "properties": {
          "datasourceUid": {
            "description": "UID of the data source for which are queries stored.",
            "example": "PE1C5CBDA0504A6A3",
            "type": "string"
          },
          "queries": {
            "$ref": "#/components/schemas/Json"
          }
        },
        "required": [
          "queries"
        ],
        "type": "object"
      },
      "CreateRoleForm": {
        "properties": {
          "description": {
            "type": "string"
          },
          "displayName": {
            "type": "string"
          },
          "global": {
            "type": "boolean"
          },
          "group": {
            "type": "string"
          },
          "hidden": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "items": {
              "$ref": "#/components/schemas/Permission"
            },
            "type": "array"
          },
          "uid": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "CreateServiceAccountForm": {
        "properties": {
          "isDisabled": {
            "example": false,
            "type": "boolean"
          },
          "name": {
            "example": "grafana",
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "example": "Admin",
            "type": "string"
          }
        },
        "type": "object"
      },
      "CreateTeamCommand": {
        "properties": {
          "email": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "CustomPermissionsRecordDTO": {
        "properties": {
          "customPermissions": {
            "type": "string"
          },
          "granteeName": {
            "type": "string"
          },
          "granteeType": {
            "type": "string"
          },
          "granteeUrl": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isFolder": {
            "type": "boolean"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "orgRole": {
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "usersCount": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardACLInfoDTO": {
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "inherited": {
            "type": "boolean"
          },
          "isFolder": {
            "type": "boolean"
          },
          "permission": {
            "$ref": "#/components/schemas/PermissionType"
          },
          "permissionName": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "team": {
            "type": "string"
          },
          "teamAvatarUrl": {
            "type": "string"
          },
          "teamEmail": {
            "type": "string"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "userAvatarUrl": {
            "type": "string"
          },
          "userEmail": {
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          },
          "userLogin": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DashboardACLUpdateItem": {
        "properties": {
          "permission": {
            "$ref": "#/components/schemas/PermissionType"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardDTO": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/DashboardReportDTO"
          },
          "reportVariables": {
            "type": "object"
          },
          "timeRange": {
            "$ref": "#/components/schemas/TimeRangeDTO"
          }
        },
        "type": "object"
      },
      "DashboardFullWithMeta": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "meta": {
            "$ref": "#/components/schemas/DashboardMeta"
          }
        },
        "type": "object"
      },
      "DashboardMeta": {
        "properties": {
          "annotationsPermissions": {
            "$ref": "#/components/schemas/AnnotationPermission"
          },
          "canAdmin": {
            "type": "boolean"
          },
          "canDelete": {
            "type": "boolean"
          },
          "canEdit": {
            "type": "boolean"
          },
          "canSave": {
            "type": "boolean"
          },
          "canStar": {
            "type": "boolean"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "type": "string"
          },
          "expires": {
            "format": "date-time",
            "type": "string"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "folderTitle": {
            "type": "string"
          },
          "folderUid": {
            "type": "string"
          },
          "folderUrl": {
            "type": "string"
          },
          "hasAcl": {
            "type": "boolean"
          },
          "isFolder": {
            "type": "boolean"
          },
          "isSnapshot": {
            "type": "boolean"
          },
          "isStarred": {
            "type": "boolean"
          },
          "provisioned": {
            "type": "boolean"
          },
          "provisionedExternalId": {
            "type": "string"
          },
          "publicDashboardAccessToken": {
            "type": "string"
          },
          "publicDashboardEnabled": {
            "type": "boolean"
          },
          "publicDashboardUid": {
            "type": "string"
          },
          "slug": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "updatedBy": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardRedirect": {
        "properties": {
          "redirectUri": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DashboardReportDTO": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DashboardSnapshot": {
        "description": "DashboardSnapshot model",
        "properties": {
          "Created": {
            "format": "date-time",
            "type": "string"
          },
          "Dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "DashboardEncrypted": {
            "items": {
              "format": "uint8",
              "type": "integer"
            },
            "type": "array"
          },
          "DeleteKey": {
            "type": "string"
          },
          "Expires": {
            "format": "date-time",
            "type": "string"
          },
          "External": {
            "type": "boolean"
          },
          "ExternalDeleteUrl": {
            "type": "string"
          },
          "ExternalUrl": {
            "type": "string"
          },
          "Id": {
            "format": "int64",
            "type": "integer"
          },
          "Key": {
            "type": "string"
          },
          "Name": {
            "type": "string"
          },
          "OrgId": {
            "format": "int64",
            "type": "integer"
          },
          "Updated": {
            "format": "date-time",
            "type": "string"
          },
          "UserId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardSnapshotDTO": {
        "description": "DashboardSnapshotDTO without dashboard map",
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "expires": {
            "format": "date-time",
            "type": "string"
          },
          "external": {
            "type": "boolean"
          },
          "externalUrl": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "key": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardTagCloudItem": {
        "properties": {
          "count": {
            "format": "int64",
            "type": "integer"
          },
          "term": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DashboardVersionDTO": {
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "description": "Since we get created by with left join user table, this can be null technically,\nbut in reality it will always be set, when database is not corrupted.",
            "type": "string"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardUid": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "message": {
            "type": "string"
          },
          "parentVersion": {
            "format": "int64",
            "type": "integer"
          },
          "restoredFrom": {
            "format": "int64",
            "type": "integer"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DashboardVersionMeta": {
        "description": "DashboardVersionMeta extends the dashboard version model with the names\nassociated with the UserIds, overriding the field with the same name from\nthe DashboardVersion model.",
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "type": "string"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "data": {
            "$ref": "#/components/schemas/Json"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "message": {
            "type": "string"
          },
          "parentVersion": {
            "format": "int64",
            "type": "integer"
          },
          "restoredFrom": {
            "format": "int64",
            "type": "integer"
          },
          "uid": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "DataLink": {
        "description": "DataLink define what",
        "properties": {
          "targetBlank": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DataResponse": {
        "description": "A map of RefIDs (unique query identifiers) to this type makes up the Responses property of a QueryDataResponse.\nThe Error property is used to allow for partial success responses from the containing QueryDataResponse.",
        "properties": {
          "Error": {
            "description": "Error is a property to be set if the the corresponding DataQuery has an error.",
            "type": "string"
          },
          "Frames": {
            "$ref": "#/components/schemas/Frames"
          }
        },
        "title": "DataResponse contains the results from a DataQuery.",
        "type": "object"
      },
      "DataSource": {
        "properties": {
          "access": {
            "$ref": "#/components/schemas/DsAccess"
          },
          "accessControl": {
            "$ref": "#/components/schemas/Metadata"
          },
          "basicAuth": {
            "type": "boolean"
          },
          "basicAuthUser": {
            "type": "string"
          },
          "database": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDefault": {
            "type": "boolean"
          },
          "jsonData": {
            "$ref": "#/components/schemas/Json"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "readOnly": {
            "type": "boolean"
          },
          "secureJsonFields": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          },
          "typeLogoUrl": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "user": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          },
          "withCredentials": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "DataSourceList": {
        "items": {
          "$ref": "#/components/schemas/DataSourceListItemDTO"
        },
        "type": "array"
      },
      "DataSourceListItemDTO": {
        "properties": {
          "access": {
            "$ref": "#/components/schemas/DsAccess"
          },
          "basicAuth": {
            "type": "boolean"
          },
          "database": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDefault": {
            "type": "boolean"
          },
          "jsonData": {
            "$ref": "#/components/schemas/Json"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "readOnly": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          },
          "typeLogoUrl": {
            "type": "string"
          },
          "typeName": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "user": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DataSourcePermissionRuleDTO": {
        "properties": {
          "builtInRole": {
            "type": "string"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "datasourceId": {
            "format": "int64",
            "type": "integer"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isManaged": {
            "type": "boolean"
          },
          "permission": {
            "$ref": "#/components/schemas/DsPermissionType"
          },
          "permissionName": {
            "type": "string"
          },
          "team": {
            "type": "string"
          },
          "teamAvatarUrl": {
            "type": "string"
          },
          "teamEmail": {
            "type": "string"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "userAvatarUrl": {
            "type": "string"
          },
          "userEmail": {
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          },
          "userLogin": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DataSourcePermissionsDTO": {
        "properties": {
          "datasourceId": {
            "format": "int64",
            "type": "integer"
          },
          "enabled": {
            "type": "boolean"
          },
          "permissions": {
            "items": {
              "$ref": "#/components/schemas/DataSourcePermissionRuleDTO"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "DataTopic": {
        "title": "DataTopic is used to identify which topic the frame should be assigned to.",
        "type": "string"
      },
      "DeleteCorrelationResponseBody": {
        "properties": {
          "message": {
            "example": "Correlation deleted",
            "type": "string"
          }
        },
        "type": "object"
      },
      "DeleteTokenCommand": {
        "properties": {
          "instance": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "DiscoveryBase": {
        "properties": {
          "error": {
            "type": "string"
          },
          "errorType": {
            "$ref": "#/components/schemas/ErrorType"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "type": "object"
      },
      "DsAccess": {
        "type": "string"
      },
      "DsPermissionType": {
        "description": "Datasource permission\nDescription:\n`0` - No Access\n`1` - Query\nEnum: 0,1",
        "format": "int64",
        "type": "integer"
      },
      "Duration": {
        "description": "A Duration represents the elapsed time between two instants\nas an int64 nanosecond count. The representation limits the\nlargest representable duration to approximately 290 years.",
        "format": "int64",
        "type": "integer"
      },
      "EmailConfig": {
        "properties": {
          "auth_identity": {
            "type": "string"
          },
          "auth_password": {
            "$ref": "#/components/schemas/Secret"
          },
          "auth_secret": {
            "$ref": "#/components/schemas/Secret"
          },
          "auth_username": {
            "type": "string"
          },
          "from": {
            "type": "string"
          },
          "headers": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "hello": {
            "type": "string"
          },
          "html": {
            "type": "string"
          },
          "require_tls": {
            "type": "boolean"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "smarthost": {
            "$ref": "#/components/schemas/HostPort"
          },
          "text": {
            "type": "string"
          },
          "tls_config": {
            "$ref": "#/components/schemas/TLSConfig"
          },
          "to": {
            "description": "Email address to notify.",
            "type": "string"
          }
        },
        "title": "EmailConfig configures notifications via mail.",
        "type": "object"
      },
      "EmbeddedContactPoint": {
        "description": "EmbeddedContactPoint is the contact point type that is used\nby grafanas embedded alertmanager implementation.",
        "properties": {
          "disableResolveMessage": {
            "example": false,
            "type": "boolean"
          },
          "name": {
            "description": "Name is used as grouping key in the UI. Contact points with the\nsame name will be grouped in the UI.",
            "example": "webhook_1",
            "type": "string"
          },
          "provenance": {
            "readOnly": true,
            "type": "string"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "enum": [
              "alertmanager",
              " dingding",
              " discord",
              " email",
              " googlechat",
              " kafka",
              " line",
              " opsgenie",
              " pagerduty",
              " pushover",
              " sensugo",
              " slack",
              " teams",
              " telegram",
              " threema",
              " victorops",
              " webhook",
              " wecom"
            ],
            "example": "webhook",
            "type": "string"
          },
          "uid": {
            "description": "UID is the unique identifier of the contact point. The UID can be\nset by the user.",
            "example": "my_external_reference",
            "type": "string"
          }
        },
        "required": [
          "type",
          "settings"
        ],
        "type": "object"
      },
      "ErrorResponseBody": {
        "properties": {
          "error": {
            "description": "Error An optional detailed description of the actual error. Only included if running in developer mode.",
            "type": "string"
          },
          "message": {
            "description": "a human readable version of the error",
            "type": "string"
          },
          "status": {
            "description": "Status An optional status to denote the cause of the error.\n\nFor example, a 412 Precondition Failed error may include additional information of why that error happened.",
            "type": "string"
          }
        },
        "required": [
          "message"
        ],
        "type": "object"
      },
      "ErrorType": {
        "title": "ErrorType models the different API error types.",
        "type": "string"
      },
      "EvalAlertConditionCommand": {
        "description": "EvalAlertConditionCommand is the command for evaluating a condition",
        "properties": {
          "condition": {
            "type": "string"
          },
          "data": {
            "items": {
              "$ref": "#/components/schemas/AlertQuery"
            },
            "type": "array"
          },
          "now": {
            "format": "date-time",
            "type": "string"
          }
        },
        "type": "object"
      },
      "EvalMatch": {
        "properties": {
          "metric": {
            "type": "string"
          },
          "tags": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "value": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "EvalQueriesPayload": {
        "properties": {
          "data": {
            "items": {
              "$ref": "#/components/schemas/AlertQuery"
            },
            "type": "array"
          },
          "now": {
            "format": "date-time",
            "type": "string"
          }
        },
        "type": "object"
      },
      "EvalQueriesResponse": {},
      "ExtendedReceiver": {
        "properties": {
          "email_configs": {
            "$ref": "#/components/schemas/EmailConfig"
          },
          "grafana_managed_receiver": {
            "$ref": "#/components/schemas/PostableGrafanaReceiver"
          },
          "opsgenie_configs": {
            "$ref": "#/components/schemas/OpsGenieConfig"
          },
          "pagerduty_configs": {
            "$ref": "#/components/schemas/PagerdutyConfig"
          },
          "pushover_configs": {
            "$ref": "#/components/schemas/PushoverConfig"
          },
          "slack_configs": {
            "$ref": "#/components/schemas/SlackConfig"
          },
          "victorops_configs": {
            "$ref": "#/components/schemas/VictorOpsConfig"
          },
          "webhook_configs": {
            "$ref": "#/components/schemas/WebhookConfig"
          },
          "wechat_configs": {
            "$ref": "#/components/schemas/WechatConfig"
          }
        },
        "type": "object"
      },
      "FailedUser": {
        "description": "FailedUser holds the information of an user that failed",
        "properties": {
          "Error": {
            "type": "string"
          },
          "Login": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Failure": {
        "$ref": "#/components/schemas/ResponseDetails"
      },
      "Field": {
        "description": "A Field is essentially a slice of various types with extra properties and methods.\nSee NewField() for supported types.\n\nThe slice data in the Field is a not exported, so methods on the Field are used to to manipulate its data.",
        "properties": {
          "config": {
            "$ref": "#/components/schemas/FieldConfig"
          },
          "labels": {
            "$ref": "#/components/schemas/FrameLabels"
          },
          "name": {
            "description": "Name is default identifier of the field. The name does not have to be unique, but the combination\nof name and Labels should be unique for proper behavior in all situations.",
            "type": "string"
          }
        },
        "title": "Field represents a typed column of data within a Frame.",
        "type": "object"
      },
      "FieldConfig": {
        "properties": {
          "color": {
            "additionalProperties": false,
            "description": "Map values to a display color\nNOTE: this interface is under development in the frontend... so simple map for now",
            "type": "object"
          },
          "custom": {
            "additionalProperties": false,
            "description": "Panel Specific Values",
            "type": "object"
          },
          "decimals": {
            "format": "uint16",
            "type": "integer"
          },
          "description": {
            "description": "Description is human readable field metadata",
            "type": "string"
          },
          "displayName": {
            "description": "DisplayName overrides Grafana default naming, should not be used from a data source",
            "type": "string"
          },
          "displayNameFromDS": {
            "description": "DisplayNameFromDS overrides Grafana default naming in a better way that allows users to override it easily.",
            "type": "string"
          },
          "filterable": {
            "description": "Filterable indicates if the Field's data can be filtered by additional calls.",
            "type": "boolean"
          },
          "interval": {
            "description": "Interval indicates the expected regular step between values in the series.\nWhen an interval exists, consumers can identify \"missing\" values when the expected value is not present.\nThe grafana timeseries visualization will render disconnected values when missing values are found it the time field.\nThe interval uses the same units as the values.  For time.Time, this is defined in milliseconds.",
            "format": "double",
            "type": "number"
          },
          "links": {
            "description": "The behavior when clicking on a result",
            "items": {
              "$ref": "#/components/schemas/DataLink"
            },
            "type": "array"
          },
          "mappings": {
            "$ref": "#/components/schemas/ValueMappings"
          },
          "max": {
            "$ref": "#/components/schemas/ConfFloat64"
          },
          "min": {
            "$ref": "#/components/schemas/ConfFloat64"
          },
          "noValue": {
            "description": "Alternative to empty string",
            "type": "string"
          },
          "path": {
            "description": "Path is an explicit path to the field in the datasource. When the frame meta includes a path,\nthis will default to `${frame.meta.path}/${field.name}\n\nWhen defined, this value can be used as an identifier within the datasource scope, and\nmay be used as an identifier to update values in a subsequent request",
            "type": "string"
          },
          "thresholds": {
            "$ref": "#/components/schemas/ThresholdsConfig"
          },
          "unit": {
            "description": "Numeric Options",
            "type": "string"
          },
          "writeable": {
            "description": "Writeable indicates that the datasource knows how to update this value",
            "type": "boolean"
          }
        },
        "title": "FieldConfig represents the display properties for a Field.",
        "type": "object"
      },
      "FindTagsResult": {
        "properties": {
          "tags": {
            "items": {
              "$ref": "#/components/schemas/TagsDTO"
            },
            "type": "array"
          }
        },
        "title": "FindTagsResult is the result of a tags search.",
        "type": "object"
      },
      "Folder": {
        "properties": {
          "accessControl": {
            "$ref": "#/components/schemas/Metadata"
          },
          "canAdmin": {
            "type": "boolean"
          },
          "canDelete": {
            "type": "boolean"
          },
          "canEdit": {
            "type": "boolean"
          },
          "canSave": {
            "type": "boolean"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "type": "string"
          },
          "hasAcl": {
            "type": "boolean"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "updatedBy": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "FolderSearchHit": {
        "properties": {
          "accessControl": {
            "$ref": "#/components/schemas/Metadata"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Frame": {
        "description": "Each Field is well typed by its FieldType and supports optional Labels.\n\nA Frame is a general data container for Grafana. A Frame can be table data\nor time series data depending on its content and field types.",
        "properties": {
          "Fields": {
            "description": "Fields are the columns of a frame.\nAll Fields must be of the same the length when marshalling the Frame for transmission.",
            "items": {
              "$ref": "#/components/schemas/Field"
            },
            "type": "array"
          },
          "Meta": {
            "$ref": "#/components/schemas/FrameMeta"
          },
          "Name": {
            "description": "Name is used in some Grafana visualizations.",
            "type": "string"
          },
          "RefID": {
            "description": "RefID is a property that can be set to match a Frame to its originating query.",
            "type": "string"
          }
        },
        "title": "Frame is a columnar data structure where each column is a Field.",
        "type": "object"
      },
      "FrameLabels": {
        "additionalProperties": {
          "type": "string"
        },
        "description": "Labels are used to add metadata to an object.  The JSON will always be sorted keys",
        "type": "object"
      },
      "FrameMeta": {
        "description": "https://github.com/grafana/grafana/blob/master/packages/grafana-data/src/types/data.ts#L11\nNOTE -- in javascript this can accept any `[key: string]: any;` however\nthis interface only exposes the values we want to be exposed",
        "properties": {
          "channel": {
            "description": "Channel is the path to a stream in grafana live that has real-time updates for this data.",
            "type": "string"
          },
          "custom": {
            "description": "Custom datasource specific values."
          },
          "dataTopic": {
            "$ref": "#/components/schemas/DataTopic"
          },
          "executedQueryString": {
            "description": "ExecutedQueryString is the raw query sent to the underlying system. All macros and templating\nhave been applied.  When metadata contains this value, it will be shown in the query inspector.",
            "type": "string"
          },
          "notices": {
            "description": "Notices provide additional information about the data in the Frame that\nGrafana can display to the user in the user interface.",
            "items": {
              "$ref": "#/components/schemas/Notice"
            },
            "type": "array"
          },
          "path": {
            "description": "Path is a browsable path on the datasource.",
            "type": "string"
          },
          "pathSeparator": {
            "description": "PathSeparator defines the separator pattern to decode a hierarchy. The default separator is '/'.",
            "type": "string"
          },
          "preferredVisualisationType": {
            "$ref": "#/components/schemas/VisType"
          },
          "stats": {
            "description": "Stats is an array of query result statistics.",
            "items": {
              "$ref": "#/components/schemas/QueryStat"
            },
            "type": "array"
          },
          "type": {
            "$ref": "#/components/schemas/FrameType"
          }
        },
        "title": "FrameMeta matches:",
        "type": "object"
      },
      "FrameType": {
        "description": "A FrameType string, when present in a frame's metadata, asserts that the\nframe's structure conforms to the FrameType's specification.\nThis property is currently optional, so FrameType may be FrameTypeUnknown even if the properties of\nthe Frame correspond to a defined FrameType.",
        "type": "string"
      },
      "Frames": {
        "description": "It is the main data container within a backend.DataResponse.",
        "items": {
          "$ref": "#/components/schemas/Frame"
        },
        "title": "Frames is a slice of Frame pointers.",
        "type": "array"
      },
      "GetAnnotationTagsResponse": {
        "properties": {
          "result": {
            "$ref": "#/components/schemas/FindTagsResult"
          }
        },
        "title": "GetAnnotationTagsResponse is a response struct for FindTagsResult.",
        "type": "object"
      },
      "GetHomeDashboardResponse": {
        "allOf": [
          {
            "properties": {
              "dashboard": {
                "$ref": "#/components/schemas/Json"
              },
              "meta": {
                "$ref": "#/components/schemas/DashboardMeta"
              }
            },
            "type": "object"
          },
          {
            "properties": {
              "redirectUri": {
                "type": "string"
              }
            },
            "type": "object"
          }
        ],
        "title": "Get home dashboard response."
      },
      "GettableAlertmanagers": {
        "properties": {
          "data": {
            "$ref": "#/components/schemas/AlertManagersResult"
          },
          "status": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "GettableApiAlertingConfig": {
        "properties": {
          "global": {
            "$ref": "#/components/schemas/GlobalConfig"
          },
          "inhibit_rules": {
            "items": {
              "$ref": "#/components/schemas/InhibitRule"
            },
            "type": "array"
          },
          "muteTimeProvenances": {
            "additionalProperties": {
              "$ref": "#/components/schemas/Provenance"
            },
            "type": "object"
          },
          "mute_time_intervals": {
            "items": {
              "$ref": "#/components/schemas/MuteTimeInterval"
            },
            "type": "array"
          },
          "receivers": {
            "description": "Override with our superset receiver type",
            "items": {
              "$ref": "#/components/schemas/GettableApiReceiver"
            },
            "type": "array"
          },
          "route": {
            "$ref": "#/components/schemas/Route"
          },
          "templates": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "GettableApiReceiver": {
        "properties": {
          "email_configs": {
            "items": {
              "$ref": "#/components/schemas/EmailConfig"
            },
            "type": "array"
          },
          "grafana_managed_receiver_configs": {
            "items": {
              "$ref": "#/components/schemas/GettableGrafanaReceiver"
            },
            "type": "array"
          },
          "name": {
            "description": "A unique identifier for this receiver.",
            "type": "string"
          },
          "opsgenie_configs": {
            "items": {
              "$ref": "#/components/schemas/OpsGenieConfig"
            },
            "type": "array"
          },
          "pagerduty_configs": {
            "items": {
              "$ref": "#/components/schemas/PagerdutyConfig"
            },
            "type": "array"
          },
          "pushover_configs": {
            "items": {
              "$ref": "#/components/schemas/PushoverConfig"
            },
            "type": "array"
          },
          "slack_configs": {
            "items": {
              "$ref": "#/components/schemas/SlackConfig"
            },
            "type": "array"
          },
          "sns_configs": {
            "items": {
              "$ref": "#/components/schemas/SNSConfig"
            },
            "type": "array"
          },
          "telegram_configs": {
            "items": {
              "$ref": "#/components/schemas/TelegramConfig"
            },
            "type": "array"
          },
          "victorops_configs": {
            "items": {
              "$ref": "#/components/schemas/VictorOpsConfig"
            },
            "type": "array"
          },
          "webhook_configs": {
            "items": {
              "$ref": "#/components/schemas/WebhookConfig"
            },
            "type": "array"
          },
          "wechat_configs": {
            "items": {
              "$ref": "#/components/schemas/WechatConfig"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "GettableExtendedRuleNode": {
        "properties": {
          "alert": {
            "type": "string"
          },
          "annotations": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "expr": {
            "type": "string"
          },
          "for": {
            "type": "string"
          },
          "grafana_alert": {
            "$ref": "#/components/schemas/GettableGrafanaRule"
          },
          "labels": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "record": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "GettableGrafanaReceiver": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "provenance": {
            "$ref": "#/components/schemas/Provenance"
          },
          "secureFields": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "GettableGrafanaReceivers": {
        "properties": {
          "grafana_managed_receiver_configs": {
            "items": {
              "$ref": "#/components/schemas/GettableGrafanaReceiver"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "GettableGrafanaRule": {
        "properties": {
          "condition": {
            "type": "string"
          },
          "data": {
            "items": {
              "$ref": "#/components/schemas/AlertQuery"
            },
            "type": "array"
          },
          "exec_err_state": {
            "enum": [
              "OK",
              "Alerting",
              "Error"
            ],
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "intervalSeconds": {
            "format": "int64",
            "type": "integer"
          },
          "namespace_id": {
            "format": "int64",
            "type": "integer"
          },
          "namespace_uid": {
            "type": "string"
          },
          "no_data_state": {
            "enum": [
              "Alerting",
              "NoData",
              "OK"
            ],
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "provenance": {
            "$ref": "#/components/schemas/Provenance"
          },
          "rule_group": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "GettableNGalertConfig": {
        "properties": {
          "alertmanagers": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "alertmanagersChoice": {
            "enum": [
              "all",
              "internal",
              "external"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "GettableRuleGroupConfig": {
        "properties": {
          "interval": {
            "$ref": "#/components/schemas/Duration"
          },
          "name": {
            "type": "string"
          },
          "rules": {
            "items": {
              "$ref": "#/components/schemas/GettableExtendedRuleNode"
            },
            "type": "array"
          },
          "source_tenants": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "GettableStatus": {
        "properties": {
          "cluster": {
            "$ref": "#/components/schemas/clusterStatus"
          },
          "config": {
            "$ref": "#/components/schemas/PostableApiAlertingConfig"
          },
          "uptime": {
            "description": "uptime",
            "format": "date-time",
            "type": "string"
          },
          "versionInfo": {
            "$ref": "#/components/schemas/versionInfo"
          }
        },
        "required": [
          "cluster",
          "config",
          "uptime",
          "versionInfo"
        ],
        "type": "object"
      },
      "GettableUserConfig": {
        "properties": {
          "alertmanager_config": {
            "$ref": "#/components/schemas/GettableApiAlertingConfig"
          },
          "template_file_provenances": {
            "additionalProperties": {
              "$ref": "#/components/schemas/Provenance"
            },
            "type": "object"
          },
          "template_files": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "GlobalConfig": {
        "description": "GlobalConfig defines configuration parameters that are valid globally\nunless overwritten.",
        "properties": {
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "opsgenie_api_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "opsgenie_api_key_file": {
            "type": "string"
          },
          "opsgenie_api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "pagerduty_url": {
            "$ref": "#/components/schemas/URL"
          },
          "resolve_timeout": {
            "$ref": "#/components/schemas/Duration"
          },
          "slack_api_url": {
            "$ref": "#/components/schemas/SecretURL"
          },
          "slack_api_url_file": {
            "type": "string"
          },
          "smtp_auth_identity": {
            "type": "string"
          },
          "smtp_auth_password": {
            "$ref": "#/components/schemas/Secret"
          },
          "smtp_auth_secret": {
            "$ref": "#/components/schemas/Secret"
          },
          "smtp_auth_username": {
            "type": "string"
          },
          "smtp_from": {
            "type": "string"
          },
          "smtp_hello": {
            "type": "string"
          },
          "smtp_require_tls": {
            "type": "boolean"
          },
          "smtp_smarthost": {
            "$ref": "#/components/schemas/HostPort"
          },
          "telegram_api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "victorops_api_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "victorops_api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "wechat_api_corp_id": {
            "type": "string"
          },
          "wechat_api_secret": {
            "$ref": "#/components/schemas/Secret"
          },
          "wechat_api_url": {
            "$ref": "#/components/schemas/URL"
          }
        },
        "type": "object"
      },
      "HTTPClientConfig": {
        "properties": {
          "authorization": {
            "$ref": "#/components/schemas/Authorization"
          },
          "basic_auth": {
            "$ref": "#/components/schemas/BasicAuth"
          },
          "bearer_token": {
            "$ref": "#/components/schemas/Secret"
          },
          "bearer_token_file": {
            "description": "The bearer token file for the targets. Deprecated in favour of\nAuthorization.CredentialsFile.",
            "type": "string"
          },
          "enable_http2": {
            "description": "EnableHTTP2 specifies whether the client should configure HTTP2.\nThe omitempty flag is not set, because it would be hidden from the\nmarshalled configuration when set to false.",
            "type": "boolean"
          },
          "follow_redirects": {
            "description": "FollowRedirects specifies whether the client should follow HTTP 3xx redirects.\nThe omitempty flag is not set, because it would be hidden from the\nmarshalled configuration when set to false.",
            "type": "boolean"
          },
          "oauth2": {
            "$ref": "#/components/schemas/OAuth2"
          },
          "proxy_url": {
            "$ref": "#/components/schemas/URL"
          },
          "tls_config": {
            "$ref": "#/components/schemas/TLSConfig"
          }
        },
        "title": "HTTPClientConfig configures an HTTP client.",
        "type": "object"
      },
      "Hit": {
        "properties": {
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "folderTitle": {
            "type": "string"
          },
          "folderUid": {
            "type": "string"
          },
          "folderUrl": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isStarred": {
            "type": "boolean"
          },
          "slug": {
            "type": "string"
          },
          "sortMeta": {
            "format": "int64",
            "type": "integer"
          },
          "sortMetaName": {
            "type": "string"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "title": {
            "type": "string"
          },
          "type": {
            "$ref": "#/components/schemas/HitType"
          },
          "uid": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "HitList": {
        "items": {
          "$ref": "#/components/schemas/Hit"
        },
        "type": "array"
      },
      "HitType": {
        "type": "string"
      },
      "HostPort": {
        "properties": {
          "Host": {
            "type": "string"
          },
          "Port": {
            "type": "string"
          }
        },
        "title": "HostPort represents a \"host:port\" network address.",
        "type": "object"
      },
      "ImportDashboardInput": {
        "properties": {
          "name": {
            "type": "string"
          },
          "pluginId": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "title": "ImportDashboardInput definition of input parameters when importing a dashboard.",
        "type": "object"
      },
      "ImportDashboardRequest": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "folderUid": {
            "type": "string"
          },
          "inputs": {
            "items": {
              "$ref": "#/components/schemas/ImportDashboardInput"
            },
            "type": "array"
          },
          "overwrite": {
            "type": "boolean"
          },
          "path": {
            "type": "string"
          },
          "pluginId": {
            "type": "string"
          }
        },
        "title": "ImportDashboardRequest request object for importing a dashboard.",
        "type": "object"
      },
      "ImportDashboardResponse": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "description": {
            "type": "string"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "imported": {
            "type": "boolean"
          },
          "importedRevision": {
            "format": "int64",
            "type": "integer"
          },
          "importedUri": {
            "type": "string"
          },
          "importedUrl": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "pluginId": {
            "type": "string"
          },
          "removed": {
            "type": "boolean"
          },
          "revision": {
            "format": "int64",
            "type": "integer"
          },
          "slug": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "title": "ImportDashboardResponse response object returned when importing a dashboard.",
        "type": "object"
      },
      "InhibitRule": {
        "description": "InhibitRule defines an inhibition rule that mutes alerts that match the\ntarget labels if an alert matching the source labels exists.\nBoth alerts have to have a set of labels being equal.",
        "properties": {
          "equal": {
            "$ref": "#/components/schemas/LabelNames"
          },
          "source_match": {
            "additionalProperties": {
              "type": "string"
            },
            "description": "SourceMatch defines a set of labels that have to equal the given\nvalue for source alerts. Deprecated. Remove before v1.0 release.",
            "type": "object"
          },
          "source_match_re": {
            "$ref": "#/components/schemas/MatchRegexps"
          },
          "source_matchers": {
            "$ref": "#/components/schemas/Matchers"
          },
          "target_match": {
            "additionalProperties": {
              "type": "string"
            },
            "description": "TargetMatch defines a set of labels that have to equal the given\nvalue for target alerts. Deprecated. Remove before v1.0 release.",
            "type": "object"
          },
          "target_match_re": {
            "$ref": "#/components/schemas/MatchRegexps"
          },
          "target_matchers": {
            "$ref": "#/components/schemas/Matchers"
          }
        },
        "type": "object"
      },
      "InspectType": {
        "format": "int64",
        "title": "InspectType is a type for the Inspect property of a Notice.",
        "type": "integer"
      },
      "ItemDTO": {
        "properties": {
          "alertId": {
            "format": "int64",
            "type": "integer"
          },
          "alertName": {
            "type": "string"
          },
          "avatarUrl": {
            "type": "string"
          },
          "created": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardUID": {
            "type": "string"
          },
          "data": {
            "$ref": "#/components/schemas/Json"
          },
          "email": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "login": {
            "type": "string"
          },
          "newState": {
            "type": "string"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          },
          "prevState": {
            "type": "string"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "text": {
            "type": "string"
          },
          "time": {
            "format": "int64",
            "type": "integer"
          },
          "timeEnd": {
            "format": "int64",
            "type": "integer"
          },
          "updated": {
            "format": "int64",
            "type": "integer"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "Json": {
        "type": "object"
      },
      "Label": {
        "properties": {
          "Name": {
            "type": "string"
          }
        },
        "title": "Label is a key/value pair of strings.",
        "type": "object"
      },
      "LabelName": {
        "description": "A LabelName is a key for a LabelSet or Metric.  It has a value associated\ntherewith.",
        "type": "string"
      },
      "LabelNames": {
        "items": {
          "$ref": "#/components/schemas/LabelName"
        },
        "title": "LabelNames is a sortable LabelName slice. In implements sort.Interface.",
        "type": "array"
      },
      "LabelSet": {
        "additionalProperties": {
          "$ref": "#/components/schemas/LabelValue"
        },
        "description": "A LabelSet is a collection of LabelName and LabelValue pairs.  The LabelSet\nmay be fully-qualified down to the point where it may resolve to a single\nMetric in the data store or not.  All operations that occur within the realm\nof a LabelSet can emit a vector of Metric entities to which the LabelSet may\nmatch.",
        "type": "object"
      },
      "LabelValue": {
        "title": "A LabelValue is an associated value for a LabelName.",
        "type": "string"
      },
      "Labels": {
        "description": "Labels is a sorted set of labels. Order has to be guaranteed upon\ninstantiation.",
        "items": {
          "$ref": "#/components/schemas/Label"
        },
        "type": "array"
      },
      "LegacyAlert": {
        "properties": {
          "Created": {
            "format": "date-time",
            "type": "string"
          },
          "DashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "EvalData": {
            "$ref": "#/components/schemas/Json"
          },
          "ExecutionError": {
            "type": "string"
          },
          "For": {
            "$ref": "#/components/schemas/Duration"
          },
          "Frequency": {
            "format": "int64",
            "type": "integer"
          },
          "Handler": {
            "format": "int64",
            "type": "integer"
          },
          "Id": {
            "format": "int64",
            "type": "integer"
          },
          "Message": {
            "type": "string"
          },
          "Name": {
            "type": "string"
          },
          "NewStateDate": {
            "format": "date-time",
            "type": "string"
          },
          "OrgId": {
            "format": "int64",
            "type": "integer"
          },
          "PanelId": {
            "format": "int64",
            "type": "integer"
          },
          "Settings": {
            "$ref": "#/components/schemas/Json"
          },
          "Severity": {
            "type": "string"
          },
          "Silenced": {
            "type": "boolean"
          },
          "State": {
            "$ref": "#/components/schemas/AlertStateType"
          },
          "StateChanges": {
            "format": "int64",
            "type": "integer"
          },
          "Updated": {
            "format": "date-time",
            "type": "string"
          },
          "Version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "LibraryElementConnectionDTO": {
        "properties": {
          "connectionId": {
            "format": "int64",
            "type": "integer"
          },
          "connectionUid": {
            "type": "string"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "$ref": "#/components/schemas/LibraryElementDTOMetaUser"
          },
          "elementId": {
            "format": "int64",
            "type": "integer"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "kind": {
            "format": "int64",
            "type": "integer"
          }
        },
        "title": "LibraryElementConnectionDTO is the frontend DTO for element connections.",
        "type": "object"
      },
      "LibraryElementConnectionsResponse": {
        "properties": {
          "result": {
            "items": {
              "$ref": "#/components/schemas/LibraryElementConnectionDTO"
            },
            "type": "array"
          }
        },
        "title": "LibraryElementConnectionsResponse is a response struct for an array of LibraryElementConnectionDTO.",
        "type": "object"
      },
      "LibraryElementDTO": {
        "properties": {
          "description": {
            "type": "string"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "folderUid": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "kind": {
            "format": "int64",
            "type": "integer"
          },
          "meta": {
            "$ref": "#/components/schemas/LibraryElementDTOMeta"
          },
          "model": {
            "type": "object"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "title": "LibraryElementDTO is the frontend DTO for entities.",
        "type": "object"
      },
      "LibraryElementDTOMeta": {
        "properties": {
          "connectedDashboards": {
            "format": "int64",
            "type": "integer"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "createdBy": {
            "$ref": "#/components/schemas/LibraryElementDTOMetaUser"
          },
          "folderName": {
            "type": "string"
          },
          "folderUid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "updatedBy": {
            "$ref": "#/components/schemas/LibraryElementDTOMetaUser"
          }
        },
        "title": "LibraryElementDTOMeta is the meta information for LibraryElementDTO.",
        "type": "object"
      },
      "LibraryElementDTOMetaUser": {
        "properties": {
          "avatarUrl": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        },
        "title": "LibraryElementDTOMetaUser is the meta information for user that creates/changes the library element.",
        "type": "object"
      },
      "LibraryElementResponse": {
        "properties": {
          "result": {
            "$ref": "#/components/schemas/LibraryElementDTO"
          }
        },
        "title": "LibraryElementResponse is a response struct for LibraryElementDTO.",
        "type": "object"
      },
      "LibraryElementSearchResponse": {
        "properties": {
          "result": {
            "$ref": "#/components/schemas/LibraryElementSearchResult"
          }
        },
        "title": "LibraryElementSearchResponse is a response struct for LibraryElementSearchResult.",
        "type": "object"
      },
      "LibraryElementSearchResult": {
        "properties": {
          "elements": {
            "items": {
              "$ref": "#/components/schemas/LibraryElementDTO"
            },
            "type": "array"
          },
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "perPage": {
            "format": "int64",
            "type": "integer"
          },
          "totalCount": {
            "format": "int64",
            "type": "integer"
          }
        },
        "title": "LibraryElementSearchResult is the search result for entities.",
        "type": "object"
      },
      "MassDeleteAnnotationsCmd": {
        "properties": {
          "annotationId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardUID": {
            "type": "string"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "MatchRegexps": {
        "additionalProperties": {
          "$ref": "#/components/schemas/Regexp"
        },
        "title": "MatchRegexps represents a map of Regexp.",
        "type": "object"
      },
      "MatchType": {
        "format": "int64",
        "title": "MatchType is an enum for label matching types.",
        "type": "integer"
      },
      "Matcher": {
        "properties": {
          "Name": {
            "type": "string"
          },
          "Type": {
            "$ref": "#/components/schemas/MatchType"
          },
          "Value": {
            "type": "string"
          }
        },
        "title": "Matcher models the matching of a label.",
        "type": "object"
      },
      "Matchers": {
        "description": "Matchers is a slice of Matchers that is sortable, implements Stringer, and\nprovides a Matches method to match a LabelSet against all Matchers in the\nslice. Note that some users of Matchers might require it to be sorted.",
        "items": {
          "$ref": "#/components/schemas/Matcher"
        },
        "type": "array"
      },
      "MessageTemplate": {
        "properties": {
          "name": {
            "type": "string"
          },
          "provenance": {
            "$ref": "#/components/schemas/Provenance"
          },
          "template": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "MessageTemplateContent": {
        "properties": {
          "template": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "MessageTemplates": {
        "items": {
          "$ref": "#/components/schemas/MessageTemplate"
        },
        "type": "array"
      },
      "Metadata": {
        "additionalProperties": {
          "type": "boolean"
        },
        "description": "Metadata contains user accesses for a given resource\nEx: map[string]bool{\"create\":true, \"delete\": true}",
        "type": "object"
      },
      "MetricRequest": {
        "properties": {
          "debug": {
            "type": "boolean"
          },
          "from": {
            "description": "From Start time in epoch timestamps in milliseconds or relative using Grafana time units.",
            "example": "now-1h",
            "type": "string"
          },
          "publicDashboardAccessToken": {
            "type": "string"
          },
          "queries": {
            "description": "queries.refId – Specifies an identifier of the query. Is optional and default to “A”.\nqueries.datasourceId – Specifies the data source to be queried. Each query in the request must have an unique datasourceId.\nqueries.maxDataPoints - Species maximum amount of data points that dashboard panel can render. Is optional and default to 100.\nqueries.intervalMs - Specifies the time interval in milliseconds of time series. Is optional and defaults to 1000.",
            "example": [
              {
                "datasource": {
                  "uid": "PD8C576611E62080A"
                },
                "format": "table",
                "intervalMs": 86400000,
                "maxDataPoints": 1092,
                "rawSql": "SELECT 1 as valueOne, 2 as valueTwo",
                "refId": "A"
              }
            ],
            "items": {
              "$ref": "#/components/schemas/Json"
            },
            "type": "array"
          },
          "to": {
            "description": "To End time in epoch timestamps in milliseconds or relative using Grafana time units.",
            "example": "now",
            "type": "string"
          }
        },
        "required": [
          "from",
          "to",
          "queries"
        ],
        "type": "object"
      },
      "MigrateQueriesToQueryHistoryCommand": {
        "description": "MigrateQueriesToQueryHistoryCommand is the command used for migration of old queries into query history",
        "properties": {
          "queries": {
            "description": "Array of queries to store in query history.",
            "items": {
              "$ref": "#/components/schemas/QueryToMigrate"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "Model": {
        "description": "THIS TYPE IS INTENDED FOR INTERNAL USE BY THE GRAFANA BACKEND, AND IS SUBJECT TO BREAKING CHANGES.\nEquivalent Go types at stable import paths are provided in https://github.com/grafana/grok.",
        "properties": {
          "interval": {
            "description": "Interval sets the time between switching views in a playlist.\nFIXME: Is this based on a standardized format or what options are available? Can datemath be used?",
            "type": "string"
          },
          "items": {
            "description": "The ordered list of items that the playlist will iterate over.\nFIXME! This should not be optional, but changing it makes the godegen awkward",
            "items": {
              "$ref": "#/components/schemas/PlaylistItem"
            },
            "type": "array"
          },
          "name": {
            "description": "Name of the playlist.",
            "type": "string"
          },
          "uid": {
            "description": "Unique playlist identifier. Generated on creation, either by the\ncreator of the playlist of by the application.",
            "type": "string"
          }
        },
        "title": "Model is the Go representation of a playlist.",
        "type": "object"
      },
      "MultiStatus": {
        "type": "object"
      },
      "MuteTimeInterval": {
        "properties": {
          "name": {
            "type": "string"
          },
          "time_intervals": {
            "items": {
              "$ref": "#/components/schemas/TimeInterval"
            },
            "type": "array"
          }
        },
        "title": "MuteTimeInterval represents a named set of time intervals for which a route should be muted.",
        "type": "object"
      },
      "MuteTimings": {
        "items": {
          "$ref": "#/components/schemas/MuteTimeInterval"
        },
        "type": "array"
      },
      "NamespaceConfigResponse": {
        "additionalProperties": {
          "items": {
            "$ref": "#/components/schemas/GettableRuleGroupConfig"
          },
          "type": "array"
        },
        "type": "object"
      },
      "NavLink": {
        "properties": {
          "id": {
            "type": "string"
          },
          "target": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "NavbarPreference": {
        "properties": {
          "savedItems": {
            "items": {
              "$ref": "#/components/schemas/NavLink"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "NewApiKeyResult": {
        "properties": {
          "id": {
            "example": 1,
            "format": "int64",
            "type": "integer"
          },
          "key": {
            "example": "glsa_yscW25imSKJIuav8zF37RZmnbiDvB05G_fcaaf58a",
            "type": "string"
          },
          "name": {
            "example": "grafana",
            "type": "string"
          }
        },
        "type": "object"
      },
      "NotFound": {
        "type": "object"
      },
      "Notice": {
        "properties": {
          "inspect": {
            "$ref": "#/components/schemas/InspectType"
          },
          "link": {
            "description": "Link is an optional link for display in the user interface and can be an\nabsolute URL or a path relative to Grafana's root url.",
            "type": "string"
          },
          "severity": {
            "$ref": "#/components/schemas/NoticeSeverity"
          },
          "text": {
            "description": "Text is freeform descriptive text for the notice.",
            "type": "string"
          }
        },
        "title": "Notice provides a structure for presenting notifications in Grafana's user interface.",
        "type": "object"
      },
      "NoticeSeverity": {
        "format": "int64",
        "title": "NoticeSeverity is a type for the Severity property of a Notice.",
        "type": "integer"
      },
      "NotificationTestCommand": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "frequency": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "secureSettings": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "sendReminder": {
            "type": "boolean"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "NotifierConfig": {
        "properties": {
          "send_resolved": {
            "type": "boolean"
          }
        },
        "title": "NotifierConfig contains base options common across all notifier configurations.",
        "type": "object"
      },
      "OAuth2": {
        "properties": {
          "TLSConfig": {
            "$ref": "#/components/schemas/TLSConfig"
          },
          "client_id": {
            "type": "string"
          },
          "client_secret": {
            "$ref": "#/components/schemas/Secret"
          },
          "client_secret_file": {
            "type": "string"
          },
          "endpoint_params": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "proxy_url": {
            "$ref": "#/components/schemas/URL"
          },
          "scopes": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "token_url": {
            "type": "string"
          }
        },
        "title": "OAuth2 is the oauth2 client configuration.",
        "type": "object"
      },
      "ObjectMatchers": {
        "$ref": "#/components/schemas/Matchers"
      },
      "OpsGenieConfig": {
        "properties": {
          "actions": {
            "type": "string"
          },
          "api_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "api_key_file": {
            "type": "string"
          },
          "api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "description": {
            "type": "string"
          },
          "details": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "entity": {
            "type": "string"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message": {
            "type": "string"
          },
          "note": {
            "type": "string"
          },
          "priority": {
            "type": "string"
          },
          "responders": {
            "items": {
              "$ref": "#/components/schemas/OpsGenieConfigResponder"
            },
            "type": "array"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "source": {
            "type": "string"
          },
          "tags": {
            "type": "string"
          },
          "update_alerts": {
            "type": "boolean"
          }
        },
        "title": "OpsGenieConfig configures notifications via OpsGenie.",
        "type": "object"
      },
      "OpsGenieConfigResponder": {
        "properties": {
          "id": {
            "description": "One of those 3 should be filled.",
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "type": {
            "description": "team, user, escalation, schedule etc.",
            "type": "string"
          },
          "username": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "OrgDTO": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "OrgDetailsDTO": {
        "properties": {
          "address": {
            "$ref": "#/components/schemas/Address"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "OrgUserDTO": {
        "properties": {
          "accessControl": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "avatarUrl": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "isDisabled": {
            "type": "boolean"
          },
          "lastSeenAt": {
            "format": "date-time",
            "type": "string"
          },
          "lastSeenAtAge": {
            "type": "string"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "role": {
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PagerdutyConfig": {
        "properties": {
          "class": {
            "type": "string"
          },
          "client": {
            "type": "string"
          },
          "client_url": {
            "type": "string"
          },
          "component": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "details": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "group": {
            "type": "string"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "images": {
            "items": {
              "$ref": "#/components/schemas/PagerdutyImage"
            },
            "type": "array"
          },
          "links": {
            "items": {
              "$ref": "#/components/schemas/PagerdutyLink"
            },
            "type": "array"
          },
          "routing_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "service_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "severity": {
            "type": "string"
          },
          "url": {
            "$ref": "#/components/schemas/URL"
          }
        },
        "title": "PagerdutyConfig configures notifications via PagerDuty.",
        "type": "object"
      },
      "PagerdutyImage": {
        "description": "PagerdutyImage is an image",
        "properties": {
          "alt": {
            "type": "string"
          },
          "href": {
            "type": "string"
          },
          "src": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PagerdutyLink": {
        "description": "PagerdutyLink is a link",
        "properties": {
          "href": {
            "type": "string"
          },
          "text": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchAnnotationsCmd": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "text": {
            "type": "string"
          },
          "time": {
            "format": "int64",
            "type": "integer"
          },
          "timeEnd": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchLibraryElementCommand": {
        "description": "PatchLibraryElementCommand is the command for patching a LibraryElement",
        "properties": {
          "folderId": {
            "description": "ID of the folder where the library element is stored.",
            "format": "int64",
            "type": "integer"
          },
          "folderUid": {
            "description": "UID of the folder where the library element is stored.",
            "type": "string"
          },
          "kind": {
            "description": "Kind of element to create, Use 1 for library panels or 2 for c.\nDescription:\n1 - library panels\n2 - library variables",
            "enum": [
              1,
              2
            ],
            "format": "int64",
            "type": "integer"
          },
          "model": {
            "description": "The JSON model for the library element.",
            "type": "object"
          },
          "name": {
            "description": "Name of the library element.",
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "version": {
            "description": "Version of the library element you are updating.",
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PatchPrefsCmd": {
        "properties": {
          "homeDashboardId": {
            "default": 0,
            "description": "The numerical :id of a favorited dashboard",
            "format": "int64",
            "type": "integer"
          },
          "homeDashboardUID": {
            "type": "string"
          },
          "locale": {
            "type": "string"
          },
          "navbar": {
            "$ref": "#/components/schemas/NavbarPreference"
          },
          "queryHistory": {
            "$ref": "#/components/schemas/QueryHistoryPreference"
          },
          "theme": {
            "enum": [
              "light",
              "dark"
            ],
            "type": "string"
          },
          "timezone": {
            "enum": [
              "utc",
              "browser"
            ],
            "type": "string"
          },
          "weekStart": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PatchQueryCommentInQueryHistoryCommand": {
        "description": "PatchQueryCommentInQueryHistoryCommand is the command for updating comment for query in query history",
        "properties": {
          "comment": {
            "description": "Updated comment",
            "type": "string"
          }
        },
        "type": "object"
      },
      "PauseAlertCommand": {
        "properties": {
          "alertId": {
            "format": "int64",
            "type": "integer"
          },
          "paused": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "PauseAllAlertsCommand": {
        "properties": {
          "paused": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "Permission": {
        "properties": {
          "action": {
            "type": "string"
          },
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "scope": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          }
        },
        "title": "Permission is the model for access control permissions.",
        "type": "object"
      },
      "PermissionDenied": {
        "type": "object"
      },
      "PermissionType": {
        "format": "int64",
        "type": "integer"
      },
      "Playlist": {
        "description": "Playlist model",
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "interval": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PlaylistDashboard": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "order": {
            "format": "int64",
            "type": "integer"
          },
          "slug": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PlaylistDashboardsSlice": {
        "items": {
          "$ref": "#/components/schemas/PlaylistDashboard"
        },
        "type": "array"
      },
      "PlaylistItem": {
        "description": "THIS TYPE IS INTENDED FOR INTERNAL USE BY THE GRAFANA BACKEND, AND IS SUBJECT TO BREAKING CHANGES.\nEquivalent Go types at stable import paths are provided in https://github.com/grafana/grok.",
        "properties": {
          "title": {
            "description": "Title is an unused property -- it will be removed in the future",
            "type": "string"
          },
          "type": {
            "$ref": "#/components/schemas/PlaylistItemType"
          },
          "value": {
            "description": "Value depends on type and describes the playlist item.\n\ndashboard_by_id: The value is an internal numerical identifier set by Grafana. This\nis not portable as the numerical identifier is non-deterministic between different instances.\nWill be replaced by dashboard_by_uid in the future. (deprecated)\ndashboard_by_tag: The value is a tag which is set on any number of dashboards. All\ndashboards behind the tag will be added to the playlist.\ndashboard_by_uid: The value is the dashboard UID",
            "type": "string"
          }
        },
        "title": "PlaylistItem is the Go representation of a playlist.Item.",
        "type": "object"
      },
      "PlaylistItemType": {
        "description": "THIS TYPE IS INTENDED FOR INTERNAL USE BY THE GRAFANA BACKEND, AND IS SUBJECT TO BREAKING CHANGES.\nEquivalent Go types at stable import paths are provided in https://github.com/grafana/grok.",
        "title": "Type of the item.",
        "type": "string"
      },
      "Playlists": {
        "items": {
          "$ref": "#/components/schemas/Playlist"
        },
        "type": "array"
      },
      "Point": {
        "properties": {
          "T": {
            "format": "int64",
            "type": "integer"
          },
          "V": {
            "format": "double",
            "type": "number"
          }
        },
        "title": "Point represents a single data point for a given timestamp.",
        "type": "object"
      },
      "PostAnnotationsCmd": {
        "properties": {
          "dashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "dashboardUID": {
            "type": "string"
          },
          "data": {
            "$ref": "#/components/schemas/Json"
          },
          "panelId": {
            "format": "int64",
            "type": "integer"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "text": {
            "type": "string"
          },
          "time": {
            "format": "int64",
            "type": "integer"
          },
          "timeEnd": {
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "text"
        ],
        "type": "object"
      },
      "PostGraphiteAnnotationsCmd": {
        "properties": {
          "data": {
            "type": "string"
          },
          "tags": {},
          "what": {
            "type": "string"
          },
          "when": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "PostableApiAlertingConfig": {
        "properties": {
          "global": {
            "$ref": "#/components/schemas/GlobalConfig"
          },
          "inhibit_rules": {
            "items": {
              "$ref": "#/components/schemas/InhibitRule"
            },
            "type": "array"
          },
          "mute_time_intervals": {
            "items": {
              "$ref": "#/components/schemas/MuteTimeInterval"
            },
            "type": "array"
          },
          "receivers": {
            "description": "Override with our superset receiver type",
            "items": {
              "$ref": "#/components/schemas/PostableApiReceiver"
            },
            "type": "array"
          },
          "route": {
            "$ref": "#/components/schemas/Route"
          },
          "templates": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "PostableApiReceiver": {
        "properties": {
          "email_configs": {
            "items": {
              "$ref": "#/components/schemas/EmailConfig"
            },
            "type": "array"
          },
          "grafana_managed_receiver_configs": {
            "items": {
              "$ref": "#/components/schemas/PostableGrafanaReceiver"
            },
            "type": "array"
          },
          "name": {
            "description": "A unique identifier for this receiver.",
            "type": "string"
          },
          "opsgenie_configs": {
            "items": {
              "$ref": "#/components/schemas/OpsGenieConfig"
            },
            "type": "array"
          },
          "pagerduty_configs": {
            "items": {
              "$ref": "#/components/schemas/PagerdutyConfig"
            },
            "type": "array"
          },
          "pushover_configs": {
            "items": {
              "$ref": "#/components/schemas/PushoverConfig"
            },
            "type": "array"
          },
          "slack_configs": {
            "items": {
              "$ref": "#/components/schemas/SlackConfig"
            },
            "type": "array"
          },
          "sns_configs": {
            "items": {
              "$ref": "#/components/schemas/SNSConfig"
            },
            "type": "array"
          },
          "telegram_configs": {
            "items": {
              "$ref": "#/components/schemas/TelegramConfig"
            },
            "type": "array"
          },
          "victorops_configs": {
            "items": {
              "$ref": "#/components/schemas/VictorOpsConfig"
            },
            "type": "array"
          },
          "webhook_configs": {
            "items": {
              "$ref": "#/components/schemas/WebhookConfig"
            },
            "type": "array"
          },
          "wechat_configs": {
            "items": {
              "$ref": "#/components/schemas/WechatConfig"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "PostableExtendedRuleNode": {
        "properties": {
          "alert": {
            "type": "string"
          },
          "annotations": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "expr": {
            "type": "string"
          },
          "for": {
            "type": "string"
          },
          "grafana_alert": {
            "$ref": "#/components/schemas/PostableGrafanaRule"
          },
          "labels": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "record": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PostableGrafanaReceiver": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "secureSettings": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PostableGrafanaReceivers": {
        "properties": {
          "grafana_managed_receiver_configs": {
            "items": {
              "$ref": "#/components/schemas/PostableGrafanaReceiver"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "PostableGrafanaRule": {
        "properties": {
          "condition": {
            "type": "string"
          },
          "data": {
            "items": {
              "$ref": "#/components/schemas/AlertQuery"
            },
            "type": "array"
          },
          "exec_err_state": {
            "enum": [
              "OK",
              "Alerting",
              "Error"
            ],
            "type": "string"
          },
          "no_data_state": {
            "enum": [
              "Alerting",
              "NoData",
              "OK"
            ],
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PostableNGalertConfig": {
        "properties": {
          "alertmanagers": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "alertmanagersChoice": {
            "enum": [
              "all",
              "internal",
              "external"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "PostableRuleGroupConfig": {
        "properties": {
          "interval": {
            "$ref": "#/components/schemas/Duration"
          },
          "name": {
            "type": "string"
          },
          "rules": {
            "items": {
              "$ref": "#/components/schemas/PostableExtendedRuleNode"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "PostableUserConfig": {
        "properties": {
          "alertmanager_config": {
            "$ref": "#/components/schemas/PostableApiAlertingConfig"
          },
          "template_files": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "Prefs": {
        "properties": {
          "homeDashboardId": {
            "format": "int64",
            "type": "integer"
          },
          "homeDashboardUID": {
            "type": "string"
          },
          "locale": {
            "type": "string"
          },
          "navbar": {
            "$ref": "#/components/schemas/NavbarPreference"
          },
          "queryHistory": {
            "$ref": "#/components/schemas/QueryHistoryPreference"
          },
          "theme": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "weekStart": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "PrometheusRemoteWriteTargetJSON": {
        "properties": {
          "data_source_uid": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "remote_write_path": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Provenance": {
        "type": "string"
      },
      "ProvisionedAlertRule": {
        "properties": {
          "annotations": {
            "additionalProperties": {
              "type": "string"
            },
            "example": {
              "runbook_url": "https://supercoolrunbook.com/page/13"
            },
            "type": "object"
          },
          "condition": {
            "example": "A",
            "type": "string"
          },
          "data": {
            "example": [
              {
                "datasourceUid": "-100",
                "model": {
                  "conditions": [
                    {
                      "evaluator": {
                        "params": [
                          0,
                          0
                        ],
                        "type": "gt"
                      },
                      "operator": {
                        "type": "and"
                      },
                      "query": {
                        "params": []
                      },
                      "reducer": {
                        "params": [],
                        "type": "avg"
                      },
                      "type": "query"
                    }
                  ],
                  "datasource": {
                    "type": "__expr__",
                    "uid": "__expr__"
                  },
                  "expression": "1 == 1",
                  "hide": false,
                  "intervalMs": 1000,
                  "maxDataPoints": 43200,
                  "refId": "A",
                  "type": "math"
                },
                "queryType": "",
                "refId": "A",
                "relativeTimeRange": {
                  "from": 0,
                  "to": 0
                }
              }
            ],
            "items": {
              "$ref": "#/components/schemas/AlertQuery"
            },
            "type": "array"
          },
          "execErrState": {
            "enum": [
              "Alerting",
              "Error",
              "OK"
            ],
            "type": "string"
          },
          "folderUID": {
            "example": "project_x",
            "type": "string"
          },
          "for": {
            "$ref": "#/components/schemas/Duration"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "labels": {
            "additionalProperties": {
              "type": "string"
            },
            "example": {
              "team": "sre-team-1"
            },
            "type": "object"
          },
          "noDataState": {
            "enum": [
              "Alerting",
              "NoData",
              "OK"
            ],
            "type": "string"
          },
          "orgID": {
            "format": "int64",
            "type": "integer"
          },
          "provenance": {
            "$ref": "#/components/schemas/Provenance"
          },
          "ruleGroup": {
            "example": "eval_group_1",
            "maxLength": 190,
            "minLength": 1,
            "type": "string"
          },
          "title": {
            "example": "Always firing",
            "maxLength": 190,
            "minLength": 1,
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "readOnly": true,
            "type": "string"
          }
        },
        "required": [
          "orgID",
          "folderUID",
          "ruleGroup",
          "title",
          "condition",
          "data",
          "noDataState",
          "execErrState",
          "for"
        ],
        "type": "object"
      },
      "PushoverConfig": {
        "properties": {
          "expire": {
            "type": "string"
          },
          "html": {
            "type": "boolean"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message": {
            "type": "string"
          },
          "priority": {
            "type": "string"
          },
          "retry": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "sound": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "token": {
            "$ref": "#/components/schemas/Secret"
          },
          "url": {
            "type": "string"
          },
          "url_title": {
            "type": "string"
          },
          "user_key": {
            "$ref": "#/components/schemas/Secret"
          }
        },
        "type": "object"
      },
      "QueryDataResponse": {
        "description": "It is the return type of a QueryData call.",
        "properties": {
          "Responses": {
            "$ref": "#/components/schemas/Responses"
          }
        },
        "title": "QueryDataResponse contains the results from a QueryDataRequest.",
        "type": "object"
      },
      "QueryHistoryDTO": {
        "properties": {
          "comment": {
            "type": "string"
          },
          "createdAt": {
            "format": "int64",
            "type": "integer"
          },
          "createdBy": {
            "format": "int64",
            "type": "integer"
          },
          "datasourceUid": {
            "type": "string"
          },
          "queries": {
            "$ref": "#/components/schemas/Json"
          },
          "starred": {
            "type": "boolean"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "QueryHistoryDeleteQueryResponse": {
        "description": "QueryHistoryDeleteQueryResponse is the response struct for deleting a query from query history",
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "message": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "QueryHistoryMigrationResponse": {
        "properties": {
          "message": {
            "type": "string"
          },
          "starredCount": {
            "format": "int64",
            "type": "integer"
          },
          "totalCount": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "QueryHistoryPreference": {
        "properties": {
          "homeTab": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "QueryHistoryResponse": {
        "description": "QueryHistoryResponse is a response struct for QueryHistoryDTO",
        "properties": {
          "result": {
            "$ref": "#/components/schemas/QueryHistoryDTO"
          }
        },
        "type": "object"
      },
      "QueryHistorySearchResponse": {
        "properties": {
          "result": {
            "$ref": "#/components/schemas/QueryHistorySearchResult"
          }
        },
        "type": "object"
      },
      "QueryHistorySearchResult": {
        "properties": {
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "perPage": {
            "format": "int64",
            "type": "integer"
          },
          "queryHistory": {
            "items": {
              "$ref": "#/components/schemas/QueryHistoryDTO"
            },
            "type": "array"
          },
          "totalCount": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "QueryStat": {
        "description": "The embedded FieldConfig's display name must be set.\nIt corresponds to the QueryResultMetaStat on the frontend (https://github.com/grafana/grafana/blob/master/packages/grafana-data/src/types/data.ts#L53).",
        "properties": {
          "color": {
            "additionalProperties": false,
            "description": "Map values to a display color\nNOTE: this interface is under development in the frontend... so simple map for now",
            "type": "object"
          },
          "custom": {
            "additionalProperties": false,
            "description": "Panel Specific Values",
            "type": "object"
          },
          "decimals": {
            "format": "uint16",
            "type": "integer"
          },
          "description": {
            "description": "Description is human readable field metadata",
            "type": "string"
          },
          "displayName": {
            "description": "DisplayName overrides Grafana default naming, should not be used from a data source",
            "type": "string"
          },
          "displayNameFromDS": {
            "description": "DisplayNameFromDS overrides Grafana default naming in a better way that allows users to override it easily.",
            "type": "string"
          },
          "filterable": {
            "description": "Filterable indicates if the Field's data can be filtered by additional calls.",
            "type": "boolean"
          },
          "interval": {
            "description": "Interval indicates the expected regular step between values in the series.\nWhen an interval exists, consumers can identify \"missing\" values when the expected value is not present.\nThe grafana timeseries visualization will render disconnected values when missing values are found it the time field.\nThe interval uses the same units as the values.  For time.Time, this is defined in milliseconds.",
            "format": "double",
            "type": "number"
          },
          "links": {
            "description": "The behavior when clicking on a result",
            "items": {
              "$ref": "#/components/schemas/DataLink"
            },
            "type": "array"
          },
          "mappings": {
            "$ref": "#/components/schemas/ValueMappings"
          },
          "max": {
            "$ref": "#/components/schemas/ConfFloat64"
          },
          "min": {
            "$ref": "#/components/schemas/ConfFloat64"
          },
          "noValue": {
            "description": "Alternative to empty string",
            "type": "string"
          },
          "path": {
            "description": "Path is an explicit path to the field in the datasource. When the frame meta includes a path,\nthis will default to `${frame.meta.path}/${field.name}\n\nWhen defined, this value can be used as an identifier within the datasource scope, and\nmay be used as an identifier to update values in a subsequent request",
            "type": "string"
          },
          "thresholds": {
            "$ref": "#/components/schemas/ThresholdsConfig"
          },
          "unit": {
            "description": "Numeric Options",
            "type": "string"
          },
          "value": {
            "format": "double",
            "type": "number"
          },
          "writeable": {
            "description": "Writeable indicates that the datasource knows how to update this value",
            "type": "boolean"
          }
        },
        "title": "QueryStat is used for storing arbitrary statistics metadata related to a query and its result, e.g. total request time, data processing time.",
        "type": "object"
      },
      "QueryToMigrate": {
        "properties": {
          "comment": {
            "type": "string"
          },
          "createdAt": {
            "format": "int64",
            "type": "integer"
          },
          "datasourceUid": {
            "type": "string"
          },
          "queries": {
            "$ref": "#/components/schemas/Json"
          },
          "starred": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "Receiver": {
        "properties": {
          "email_configs": {
            "items": {
              "$ref": "#/components/schemas/EmailConfig"
            },
            "type": "array"
          },
          "name": {
            "description": "A unique identifier for this receiver.",
            "type": "string"
          },
          "opsgenie_configs": {
            "items": {
              "$ref": "#/components/schemas/OpsGenieConfig"
            },
            "type": "array"
          },
          "pagerduty_configs": {
            "items": {
              "$ref": "#/components/schemas/PagerdutyConfig"
            },
            "type": "array"
          },
          "pushover_configs": {
            "items": {
              "$ref": "#/components/schemas/PushoverConfig"
            },
            "type": "array"
          },
          "slack_configs": {
            "items": {
              "$ref": "#/components/schemas/SlackConfig"
            },
            "type": "array"
          },
          "sns_configs": {
            "items": {
              "$ref": "#/components/schemas/SNSConfig"
            },
            "type": "array"
          },
          "telegram_configs": {
            "items": {
              "$ref": "#/components/schemas/TelegramConfig"
            },
            "type": "array"
          },
          "victorops_configs": {
            "items": {
              "$ref": "#/components/schemas/VictorOpsConfig"
            },
            "type": "array"
          },
          "webhook_configs": {
            "items": {
              "$ref": "#/components/schemas/WebhookConfig"
            },
            "type": "array"
          },
          "wechat_configs": {
            "items": {
              "$ref": "#/components/schemas/WechatConfig"
            },
            "type": "array"
          }
        },
        "title": "Receiver configuration provides configuration on how to contact a receiver.",
        "type": "object"
      },
      "RecordingRuleJSON": {
        "description": "RecordingRuleJSON is the external representation of a recording rule",
        "properties": {
          "active": {
            "type": "boolean"
          },
          "count": {
            "type": "boolean"
          },
          "description": {
            "type": "string"
          },
          "dest_data_source_uid": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "interval": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "prom_name": {
            "type": "string"
          },
          "queries": {
            "items": {
              "additionalProperties": false,
              "type": "object"
            },
            "type": "array"
          },
          "range": {
            "format": "int64",
            "type": "integer"
          },
          "target_ref_id": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Regexp": {
        "description": "A Regexp is safe for concurrent use by multiple goroutines,\nexcept for configuration methods, such as Longest.",
        "title": "Regexp is the representation of a compiled regular expression.",
        "type": "object"
      },
      "RelativeTimeRange": {
        "description": "RelativeTimeRange is the per query start and end time\nfor requests.",
        "properties": {
          "from": {
            "$ref": "#/components/schemas/Duration"
          },
          "to": {
            "$ref": "#/components/schemas/Duration"
          }
        },
        "type": "object"
      },
      "ReportEmailDTO": {
        "properties": {
          "email": {
            "type": "string"
          },
          "emails": {
            "description": "Comma-separated list of emails to which to send the report to.",
            "type": "string"
          },
          "id": {
            "description": "Send the report to the emails specified in the report. Required if emails is not present.",
            "format": "int64",
            "type": "string"
          },
          "useEmailsFromReport": {
            "description": "Send the report to the emails specified in the report. Required if emails is not present.",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "ReportOptionsDTO": {
        "properties": {
          "layout": {
            "type": "string"
          },
          "orientation": {
            "type": "string"
          },
          "timeRange": {
            "$ref": "#/components/schemas/TimeRangeDTO"
          }
        },
        "type": "object"
      },
      "ResponseDetails": {
        "properties": {
          "msg": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Responses": {
        "additionalProperties": {
          "$ref": "#/components/schemas/DataResponse"
        },
        "description": "The QueryData method the QueryDataHandler method will set the RefId\nproperty on the DataResponses' frames based on these RefIDs.",
        "title": "Responses is a map of RefIDs (Unique Query ID) to DataResponses.",
        "type": "object"
      },
      "RestoreDashboardVersionCommand": {
        "properties": {
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "RevokeAuthTokenCmd": {
        "properties": {
          "authTokenId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "RoleAssignmentsDTO": {
        "properties": {
          "role_uid": {
            "type": "string"
          },
          "service_accounts": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          },
          "teams": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          },
          "users": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "RoleDTO": {
        "properties": {
          "created": {
            "format": "date-time",
            "type": "string"
          },
          "delegatable": {
            "type": "boolean"
          },
          "description": {
            "type": "string"
          },
          "displayName": {
            "type": "string"
          },
          "group": {
            "type": "string"
          },
          "hidden": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "items": {
              "$ref": "#/components/schemas/Permission"
            },
            "type": "array"
          },
          "uid": {
            "type": "string"
          },
          "updated": {
            "format": "date-time",
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "Route": {
        "description": "A Route is a node that contains definitions of how to handle alerts. This is modified\nfrom the upstream alertmanager in that it adds the ObjectMatchers property.",
        "properties": {
          "continue": {
            "type": "boolean"
          },
          "group_by": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "group_interval": {
            "type": "string"
          },
          "group_wait": {
            "type": "string"
          },
          "match": {
            "additionalProperties": {
              "type": "string"
            },
            "description": "Deprecated. Remove before v1.0 release.",
            "type": "object"
          },
          "match_re": {
            "$ref": "#/components/schemas/MatchRegexps"
          },
          "matchers": {
            "$ref": "#/components/schemas/Matchers"
          },
          "mute_time_intervals": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "object_matchers": {
            "$ref": "#/components/schemas/ObjectMatchers"
          },
          "provenance": {
            "$ref": "#/components/schemas/Provenance"
          },
          "receiver": {
            "type": "string"
          },
          "repeat_interval": {
            "type": "string"
          },
          "routes": {
            "items": {
              "$ref": "#/components/schemas/Route"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "Rule": {
        "description": "adapted from cortex",
        "properties": {
          "evaluationTime": {
            "format": "double",
            "type": "number"
          },
          "health": {
            "type": "string"
          },
          "labels": {
            "$ref": "#/components/schemas/overrideLabels"
          },
          "lastError": {
            "type": "string"
          },
          "lastEvaluation": {
            "format": "date-time",
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "query": {
            "type": "string"
          },
          "type": {
            "$ref": "#/components/schemas/RuleType"
          }
        },
        "required": [
          "name",
          "query",
          "health",
          "type"
        ],
        "type": "object"
      },
      "RuleDiscovery": {
        "properties": {
          "groups": {
            "items": {
              "$ref": "#/components/schemas/RuleGroup"
            },
            "type": "array"
          }
        },
        "required": [
          "groups"
        ],
        "type": "object"
      },
      "RuleGroup": {
        "properties": {
          "evaluationTime": {
            "format": "double",
            "type": "number"
          },
          "file": {
            "type": "string"
          },
          "interval": {
            "format": "double",
            "type": "number"
          },
          "lastEvaluation": {
            "format": "date-time",
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "rules": {
            "description": "In order to preserve rule ordering, while exposing type (alerting or recording)\nspecific properties, both alerting and recording rules are exposed in the\nsame array.",
            "items": {
              "$ref": "#/components/schemas/AlertingRule"
            },
            "type": "array"
          }
        },
        "required": [
          "name",
          "file",
          "rules",
          "interval"
        ],
        "type": "object"
      },
      "RuleGroupConfigResponse": {
        "properties": {
          "interval": {
            "$ref": "#/components/schemas/Duration"
          },
          "name": {
            "type": "string"
          },
          "rules": {
            "items": {
              "$ref": "#/components/schemas/GettableExtendedRuleNode"
            },
            "type": "array"
          },
          "source_tenants": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "RuleResponse": {
        "properties": {
          "data": {
            "$ref": "#/components/schemas/RuleDiscovery"
          },
          "error": {
            "type": "string"
          },
          "errorType": {
            "$ref": "#/components/schemas/ErrorType"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "type": "object"
      },
      "RuleType": {
        "title": "RuleType models the type of a rule.",
        "type": "string"
      },
      "SNSConfig": {
        "properties": {
          "api_url": {
            "type": "string"
          },
          "attributes": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message": {
            "type": "string"
          },
          "phone_number": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "sigv4": {
            "$ref": "#/components/schemas/SigV4Config"
          },
          "subject": {
            "type": "string"
          },
          "target_arn": {
            "type": "string"
          },
          "topic_arn": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Sample": {
        "properties": {
          "Metric": {
            "$ref": "#/components/schemas/Labels"
          },
          "T": {
            "format": "int64",
            "type": "integer"
          },
          "V": {
            "format": "double",
            "type": "number"
          }
        },
        "title": "Sample is a single sample belonging to a metric.",
        "type": "object"
      },
      "SaveDashboardCommand": {
        "properties": {
          "UpdatedAt": {
            "format": "date-time",
            "type": "string"
          },
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "folderId": {
            "format": "int64",
            "type": "integer"
          },
          "folderUid": {
            "type": "string"
          },
          "isFolder": {
            "type": "boolean"
          },
          "message": {
            "type": "string"
          },
          "overwrite": {
            "type": "boolean"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ScheduleDTO": {
        "properties": {
          "day": {
            "type": "string"
          },
          "dayOfMonth": {
            "type": "string"
          },
          "endDate": {
            "format": "date-time",
            "type": "string"
          },
          "frequency": {
            "type": "string"
          },
          "hour": {
            "format": "int64",
            "type": "integer"
          },
          "intervalAmount": {
            "format": "int64",
            "type": "integer"
          },
          "intervalFrequency": {
            "type": "string"
          },
          "minute": {
            "format": "int64",
            "type": "integer"
          },
          "startDate": {
            "format": "date-time",
            "type": "string"
          },
          "timeZone": {
            "type": "string"
          },
          "workdaysOnly": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "SearchServiceAccountsResult": {
        "description": "swagger: model",
        "properties": {
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "perPage": {
            "format": "int64",
            "type": "integer"
          },
          "serviceAccounts": {
            "items": {
              "$ref": "#/components/schemas/ServiceAccountDTO"
            },
            "type": "array"
          },
          "totalCount": {
            "description": "It can be used for pagination of the user list\nE.g. if totalCount is equal to 100 users and\nthe perpage parameter is set to 10 then there are 10 pages of users.",
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "SearchTeamQueryResult": {
        "properties": {
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "perPage": {
            "format": "int64",
            "type": "integer"
          },
          "teams": {
            "items": {
              "$ref": "#/components/schemas/TeamDTO"
            },
            "type": "array"
          },
          "totalCount": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "SearchUserQueryResult": {
        "properties": {
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "perPage": {
            "format": "int64",
            "type": "integer"
          },
          "totalCount": {
            "format": "int64",
            "type": "integer"
          },
          "users": {
            "items": {
              "$ref": "#/components/schemas/UserSearchHitDTO"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "Secret": {
        "title": "Secret special type for storing secrets.",
        "type": "string"
      },
      "SecretURL": {
        "$ref": "#/components/schemas/URL"
      },
      "ServiceAccountDTO": {
        "description": "swagger: model",
        "properties": {
          "accessControl": {
            "additionalProperties": {
              "type": "boolean"
            },
            "example": {
              "serviceaccounts:delete": true,
              "serviceaccounts:read": true,
              "serviceaccounts:write": true
            },
            "type": "object"
          },
          "avatarUrl": {
            "example": "/avatar/85ec38023d90823d3e5b43ef35646af9",
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDisabled": {
            "example": false,
            "type": "boolean"
          },
          "login": {
            "example": "sa-grafana",
            "type": "string"
          },
          "name": {
            "example": "grafana",
            "type": "string"
          },
          "orgId": {
            "example": 1,
            "format": "int64",
            "type": "integer"
          },
          "role": {
            "example": "Viewer",
            "type": "string"
          },
          "tokens": {
            "example": 0,
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "ServiceAccountProfileDTO": {
        "properties": {
          "accessControl": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "avatarUrl": {
            "example": "/avatar/8ea890a677d6a223c591a1beea6ea9d2",
            "type": "string"
          },
          "createdAt": {
            "example": "2022-03-21T14:35:33Z",
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "example": 2,
            "format": "int64",
            "type": "integer"
          },
          "isDisabled": {
            "example": false,
            "type": "boolean"
          },
          "login": {
            "example": "sa-grafana",
            "type": "string"
          },
          "name": {
            "example": "test",
            "type": "string"
          },
          "orgId": {
            "example": 1,
            "format": "int64",
            "type": "integer"
          },
          "role": {
            "example": "Editor",
            "type": "string"
          },
          "teams": {
            "example": [],
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "tokens": {
            "format": "int64",
            "type": "integer"
          },
          "updatedAt": {
            "example": "2022-03-21T14:35:33Z",
            "format": "date-time",
            "type": "string"
          }
        },
        "type": "object"
      },
      "SetRoleAssignmentsCommand": {
        "properties": {
          "service_accounts": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          },
          "teams": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          },
          "users": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "SetUserRolesCommand": {
        "properties": {
          "global": {
            "type": "boolean"
          },
          "includeHidden": {
            "type": "boolean"
          },
          "roleUids": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "SettingsBag": {
        "additionalProperties": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "type": "object"
      },
      "SettingsDTO": {
        "properties": {
          "branding": {
            "$ref": "#/components/schemas/BrandingOptionsDTO"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "SigV4Config": {
        "description": "SigV4Config is the configuration for signing remote write requests with\nAWS's SigV4 verification process. Empty values will be retrieved using the\nAWS default credentials chain.",
        "properties": {
          "AccessKey": {
            "type": "string"
          },
          "Profile": {
            "type": "string"
          },
          "Region": {
            "type": "string"
          },
          "RoleARN": {
            "type": "string"
          },
          "SecretKey": {
            "$ref": "#/components/schemas/Secret"
          }
        },
        "type": "object"
      },
      "SlackAction": {
        "description": "See https://api.slack.com/docs/message-attachments#action_fields and https://api.slack.com/docs/message-buttons\nfor more information.",
        "properties": {
          "confirm": {
            "$ref": "#/components/schemas/SlackConfirmationField"
          },
          "name": {
            "type": "string"
          },
          "style": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "title": "SlackAction configures a single Slack action that is sent with each notification.",
        "type": "object"
      },
      "SlackConfig": {
        "properties": {
          "actions": {
            "items": {
              "$ref": "#/components/schemas/SlackAction"
            },
            "type": "array"
          },
          "api_url": {
            "$ref": "#/components/schemas/SecretURL"
          },
          "api_url_file": {
            "type": "string"
          },
          "callback_id": {
            "type": "string"
          },
          "channel": {
            "description": "Slack channel override, (like #other-channel or @username).",
            "type": "string"
          },
          "color": {
            "type": "string"
          },
          "fallback": {
            "type": "string"
          },
          "fields": {
            "items": {
              "$ref": "#/components/schemas/SlackField"
            },
            "type": "array"
          },
          "footer": {
            "type": "string"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "icon_emoji": {
            "type": "string"
          },
          "icon_url": {
            "type": "string"
          },
          "image_url": {
            "type": "string"
          },
          "link_names": {
            "type": "boolean"
          },
          "mrkdwn_in": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "pretext": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "short_fields": {
            "type": "boolean"
          },
          "text": {
            "type": "string"
          },
          "thumb_url": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "title_link": {
            "type": "string"
          },
          "username": {
            "type": "string"
          }
        },
        "title": "SlackConfig configures notifications via Slack.",
        "type": "object"
      },
      "SlackConfirmationField": {
        "description": "SlackConfirmationField protect users from destructive actions or particularly distinguished decisions\nby asking them to confirm their button click one more time.\nSee https://api.slack.com/docs/interactive-message-field-guide#confirmation_fields for more information.",
        "properties": {
          "dismiss_text": {
            "type": "string"
          },
          "ok_text": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "title": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "SlackField": {
        "description": "Each field must contain a title, value, and optionally, a boolean value to indicate if the field\nis short enough to be displayed next to other fields designated as short.\nSee https://api.slack.com/docs/message-attachments#fields for more information.",
        "properties": {
          "short": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "title": "SlackField configures a single Slack field that is sent with each notification.",
        "type": "object"
      },
      "SmtpNotEnabled": {
        "$ref": "#/components/schemas/ResponseDetails"
      },
      "State": {
        "type": "string"
      },
      "Status": {
        "properties": {
          "enabled": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "Success": {
        "$ref": "#/components/schemas/ResponseDetails"
      },
      "SuccessResponseBody": {
        "properties": {
          "message": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "SyncResult": {
        "properties": {
          "Elapsed": {
            "$ref": "#/components/schemas/Duration"
          },
          "FailedUsers": {
            "items": {
              "$ref": "#/components/schemas/FailedUser"
            },
            "type": "array"
          },
          "MissingUserIds": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          },
          "Started": {
            "format": "date-time",
            "type": "string"
          },
          "UpdatedUserIds": {
            "items": {
              "format": "int64",
              "type": "integer"
            },
            "type": "array"
          }
        },
        "title": "SyncResult holds the result of a sync with LDAP. This gives us information on which users were updated and how.",
        "type": "object"
      },
      "TLSConfig": {
        "properties": {
          "ca_file": {
            "description": "The CA cert to use for the targets.",
            "type": "string"
          },
          "cert_file": {
            "description": "The client cert file for the targets.",
            "type": "string"
          },
          "insecure_skip_verify": {
            "description": "Disable target certificate validation.",
            "type": "boolean"
          },
          "key_file": {
            "description": "The client key file for the targets.",
            "type": "string"
          },
          "min_version": {
            "$ref": "#/components/schemas/TLSVersion"
          },
          "server_name": {
            "description": "Used to verify the hostname for the targets.",
            "type": "string"
          }
        },
        "title": "TLSConfig configures the options for TLS connections.",
        "type": "object"
      },
      "TLSVersion": {
        "format": "uint16",
        "type": "integer"
      },
      "TagsDTO": {
        "properties": {
          "count": {
            "format": "int64",
            "type": "integer"
          },
          "tag": {
            "type": "string"
          }
        },
        "title": "TagsDTO is the frontend DTO for Tag.",
        "type": "object"
      },
      "TeamDTO": {
        "properties": {
          "accessControl": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "avatarUrl": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "memberCount": {
            "format": "int64",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "permission": {
            "$ref": "#/components/schemas/PermissionType"
          }
        },
        "type": "object"
      },
      "TeamGroupDTO": {
        "properties": {
          "groupId": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "TeamGroupMapping": {
        "properties": {
          "groupId": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "TeamMemberDTO": {
        "properties": {
          "auth_module": {
            "type": "string"
          },
          "avatarUrl": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "labels": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "permission": {
            "$ref": "#/components/schemas/PermissionType"
          },
          "teamId": {
            "format": "int64",
            "type": "integer"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "TelegramConfig": {
        "properties": {
          "api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "chat": {
            "format": "int64",
            "type": "integer"
          },
          "disable_notifications": {
            "type": "boolean"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message": {
            "type": "string"
          },
          "parse_mode": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "token": {
            "$ref": "#/components/schemas/Secret"
          }
        },
        "title": "TelegramConfig configures notifications via Telegram.",
        "type": "object"
      },
      "TempUserDTO": {
        "properties": {
          "code": {
            "type": "string"
          },
          "createdOn": {
            "format": "date-time",
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "emailSent": {
            "type": "boolean"
          },
          "emailSentOn": {
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "invitedByEmail": {
            "type": "string"
          },
          "invitedByLogin": {
            "type": "string"
          },
          "invitedByName": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/TempUserStatus"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "TempUserStatus": {
        "type": "string"
      },
      "TestReceiverConfigResult": {
        "properties": {
          "error": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "TestReceiverResult": {
        "properties": {
          "grafana_managed_receiver_configs": {
            "items": {
              "$ref": "#/components/schemas/TestReceiverConfigResult"
            },
            "type": "array"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "TestReceiversConfigAlertParams": {
        "properties": {
          "annotations": {
            "$ref": "#/components/schemas/LabelSet"
          },
          "labels": {
            "$ref": "#/components/schemas/LabelSet"
          }
        },
        "type": "object"
      },
      "TestReceiversConfigBodyParams": {
        "properties": {
          "alert": {
            "$ref": "#/components/schemas/TestReceiversConfigAlertParams"
          },
          "receivers": {
            "items": {
              "$ref": "#/components/schemas/PostableApiReceiver"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "TestReceiversResult": {
        "properties": {
          "alert": {
            "$ref": "#/components/schemas/TestReceiversConfigAlertParams"
          },
          "notified_at": {
            "format": "date-time",
            "type": "string"
          },
          "receivers": {
            "items": {
              "$ref": "#/components/schemas/TestReceiverResult"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "TestRulePayload": {
        "properties": {
          "expr": {
            "example": "(node_filesystem_avail_bytes{fstype!=\"\",job=\"integrations/node_exporter\"} node_filesystem_size_bytes{fstype!=\"\",job=\"integrations/node_exporter\"} * 100 \u003c 5 and node_filesystem_readonly{fstype!=\"\",job=\"integrations/node_exporter\"} == 0)",
            "type": "string"
          },
          "grafana_condition": {
            "$ref": "#/components/schemas/EvalAlertConditionCommand"
          }
        },
        "type": "object"
      },
      "TestRuleResponse": {
        "properties": {
          "alerts": {
            "$ref": "#/components/schemas/Vector"
          },
          "grafana_alert_instances": {
            "$ref": "#/components/schemas/AlertInstancesResponse"
          }
        },
        "type": "object"
      },
      "Threshold": {
        "description": "Threshold a single step on the threshold list",
        "properties": {
          "color": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ConfFloat64"
          }
        },
        "type": "object"
      },
      "ThresholdsConfig": {
        "description": "ThresholdsConfig setup thresholds",
        "properties": {
          "mode": {
            "$ref": "#/components/schemas/ThresholdsMode"
          },
          "steps": {
            "description": "Must be sorted by 'value', first value is always -Infinity",
            "items": {
              "$ref": "#/components/schemas/Threshold"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "ThresholdsMode": {
        "description": "ThresholdsMode absolute or percentage",
        "type": "string"
      },
      "TimeInterval": {
        "description": "TimeInterval describes intervals of time. ContainsTime will tell you if a golang time is contained\nwithin the interval.",
        "properties": {
          "days_of_month": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "months": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "times": {
            "items": {
              "$ref": "#/components/schemas/TimeRange"
            },
            "type": "array"
          },
          "weekdays": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "years": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "TimeRange": {
        "description": "For example, 4:00PM to End of the day would Begin at 1020 and End at 1440.",
        "properties": {
          "EndMinute": {
            "format": "int64",
            "type": "integer"
          },
          "StartMinute": {
            "format": "int64",
            "type": "integer"
          }
        },
        "title": "TimeRange represents a range of minutes within a 1440 minute day, exclusive of the End minute. A day consists of 1440 minutes.",
        "type": "object"
      },
      "TimeRangeDTO": {
        "properties": {
          "from": {
            "type": "string"
          },
          "to": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "Token": {
        "properties": {
          "account": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "details_url": {
            "type": "string"
          },
          "exp": {
            "format": "int64",
            "type": "integer"
          },
          "iat": {
            "format": "int64",
            "type": "integer"
          },
          "included_users": {
            "format": "int64",
            "type": "integer"
          },
          "iss": {
            "type": "string"
          },
          "jti": {
            "type": "string"
          },
          "lexp": {
            "format": "int64",
            "type": "integer"
          },
          "lic_exp_warn_days": {
            "format": "int64",
            "type": "integer"
          },
          "lid": {
            "type": "string"
          },
          "limit_by": {
            "type": "string"
          },
          "max_concurrent_user_sessions": {
            "format": "int64",
            "type": "integer"
          },
          "nbf": {
            "format": "int64",
            "type": "integer"
          },
          "prod": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "slug": {
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/TokenStatus"
          },
          "sub": {
            "type": "string"
          },
          "tok_exp_warn_days": {
            "format": "int64",
            "type": "integer"
          },
          "trial": {
            "type": "boolean"
          },
          "trial_exp": {
            "format": "int64",
            "type": "integer"
          },
          "update_days": {
            "format": "int64",
            "type": "integer"
          },
          "usage_billing": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "TokenDTO": {
        "properties": {
          "created": {
            "example": "2022-03-23T10:31:02Z",
            "format": "date-time",
            "type": "string"
          },
          "expiration": {
            "example": "2022-03-23T10:31:02Z",
            "format": "date-time",
            "type": "string"
          },
          "hasExpired": {
            "example": false,
            "type": "boolean"
          },
          "id": {
            "example": 1,
            "format": "int64",
            "type": "integer"
          },
          "isRevoked": {
            "example": false,
            "type": "boolean"
          },
          "lastUsedAt": {
            "example": "2022-03-23T10:31:02Z",
            "format": "date-time",
            "type": "string"
          },
          "name": {
            "example": "grafana",
            "type": "string"
          },
          "secondsUntilExpiration": {
            "example": 0,
            "format": "double",
            "type": "number"
          }
        },
        "type": "object"
      },
      "TokenStatus": {
        "format": "int64",
        "type": "integer"
      },
      "TrimDashboardCommand": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "meta": {
            "$ref": "#/components/schemas/Json"
          }
        },
        "type": "object"
      },
      "TrimDashboardFullWithMeta": {
        "properties": {
          "dashboard": {
            "$ref": "#/components/schemas/Json"
          },
          "meta": {
            "$ref": "#/components/schemas/Json"
          }
        },
        "type": "object"
      },
      "Type": {
        "type": "string"
      },
      "URL": {
        "properties": {
          "ForceQuery": {
            "type": "boolean"
          },
          "Fragment": {
            "type": "string"
          },
          "Host": {
            "type": "string"
          },
          "OmitHost": {
            "type": "boolean"
          },
          "Opaque": {
            "type": "string"
          },
          "Path": {
            "type": "string"
          },
          "RawFragment": {
            "type": "string"
          },
          "RawPath": {
            "type": "string"
          },
          "RawQuery": {
            "type": "string"
          },
          "Scheme": {
            "type": "string"
          },
          "User": {
            "$ref": "#/components/schemas/Userinfo"
          }
        },
        "title": "URL is a custom URL type that allows validation at configuration load time.",
        "type": "object"
      },
      "UpdateAlertNotificationCommand": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "frequency": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDefault": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "secureSettings": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "sendReminder": {
            "type": "boolean"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateAlertNotificationWithUidCommand": {
        "properties": {
          "disableResolveMessage": {
            "type": "boolean"
          },
          "frequency": {
            "type": "string"
          },
          "isDefault": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "secureSettings": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "sendReminder": {
            "type": "boolean"
          },
          "settings": {
            "$ref": "#/components/schemas/Json"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateAnnotationsCmd": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "text": {
            "type": "string"
          },
          "time": {
            "format": "int64",
            "type": "integer"
          },
          "timeEnd": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "UpdateCorrelationCommand": {
        "description": "UpdateCorrelationCommand is the command for updating a correlation",
        "properties": {
          "config": {
            "$ref": "#/components/schemas/CorrelationConfigUpdateDTO"
          },
          "description": {
            "description": "Optional description of the correlation",
            "example": "Logs to Traces",
            "type": "string"
          },
          "label": {
            "description": "Optional label identifying the correlation",
            "example": "My label",
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateCorrelationResponseBody": {
        "properties": {
          "message": {
            "example": "Correlation updated",
            "type": "string"
          },
          "result": {
            "$ref": "#/components/schemas/Correlation"
          }
        },
        "type": "object"
      },
      "UpdateDashboardACLCommand": {
        "properties": {
          "items": {
            "items": {
              "$ref": "#/components/schemas/DashboardACLUpdateItem"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "UpdateDataSourceCommand": {
        "description": "Also acts as api DTO",
        "properties": {
          "access": {
            "$ref": "#/components/schemas/DsAccess"
          },
          "basicAuth": {
            "type": "boolean"
          },
          "basicAuthUser": {
            "type": "string"
          },
          "database": {
            "type": "string"
          },
          "isDefault": {
            "type": "boolean"
          },
          "jsonData": {
            "$ref": "#/components/schemas/Json"
          },
          "name": {
            "type": "string"
          },
          "secureJsonData": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "user": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          },
          "withCredentials": {
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "UpdateFolderCommand": {
        "properties": {
          "overwrite": {
            "type": "boolean"
          },
          "title": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "UpdateOrgAddressForm": {
        "properties": {
          "address1": {
            "type": "string"
          },
          "address2": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "country": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "zipcode": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateOrgForm": {
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateOrgQuotaCmd": {
        "properties": {
          "limit": {
            "format": "int64",
            "type": "integer"
          },
          "target": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateOrgUserCommand": {
        "properties": {
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdatePlaylistCommand": {
        "properties": {
          "interval": {
            "type": "string"
          },
          "items": {
            "items": {
              "$ref": "#/components/schemas/PlaylistItem"
            },
            "type": "array"
          },
          "name": {
            "type": "string"
          },
          "uid": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdatePrefsCmd": {
        "properties": {
          "homeDashboardId": {
            "default": 0,
            "description": "The numerical :id of a favorited dashboard",
            "format": "int64",
            "type": "integer"
          },
          "homeDashboardUID": {
            "type": "string"
          },
          "locale": {
            "type": "string"
          },
          "navbar": {
            "$ref": "#/components/schemas/NavbarPreference"
          },
          "queryHistory": {
            "$ref": "#/components/schemas/QueryHistoryPreference"
          },
          "theme": {
            "enum": [
              "light",
              "dark"
            ],
            "type": "string"
          },
          "timezone": {
            "enum": [
              "utc",
              "browser"
            ],
            "type": "string"
          },
          "weekStart": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateRoleCommand": {
        "properties": {
          "description": {
            "type": "string"
          },
          "displayName": {
            "type": "string"
          },
          "global": {
            "type": "boolean"
          },
          "group": {
            "type": "string"
          },
          "hidden": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "items": {
              "$ref": "#/components/schemas/Permission"
            },
            "type": "array"
          },
          "version": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "UpdateServiceAccountForm": {
        "properties": {
          "isDisabled": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateTeamCommand": {
        "properties": {
          "Email": {
            "type": "string"
          },
          "Id": {
            "format": "int64",
            "type": "integer"
          },
          "Name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateTeamMemberCommand": {
        "properties": {
          "permission": {
            "$ref": "#/components/schemas/PermissionType"
          }
        },
        "type": "object"
      },
      "UpdateUserCommand": {
        "properties": {
          "email": {
            "type": "string"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "theme": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UpdateUserQuotaCmd": {
        "properties": {
          "limit": {
            "format": "int64",
            "type": "integer"
          },
          "target": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserIdDTO": {
        "properties": {
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "message": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserLookupDTO": {
        "properties": {
          "avatarUrl": {
            "type": "string"
          },
          "login": {
            "type": "string"
          },
          "userId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "UserOrgDTO": {
        "properties": {
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "role": {
            "enum": [
              "Viewer",
              "Editor",
              "Admin"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserProfileDTO": {
        "properties": {
          "accessControl": {
            "additionalProperties": {
              "type": "boolean"
            },
            "type": "object"
          },
          "authLabels": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "avatarUrl": {
            "type": "string"
          },
          "createdAt": {
            "format": "date-time",
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isDisabled": {
            "type": "boolean"
          },
          "isExternal": {
            "type": "boolean"
          },
          "isGrafanaAdmin": {
            "type": "boolean"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "orgId": {
            "format": "int64",
            "type": "integer"
          },
          "theme": {
            "type": "string"
          },
          "updatedAt": {
            "format": "date-time",
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserQuotaDTO": {
        "properties": {
          "limit": {
            "format": "int64",
            "type": "integer"
          },
          "target": {
            "type": "string"
          },
          "used": {
            "format": "int64",
            "type": "integer"
          },
          "user_id": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "UserSearchHitDTO": {
        "properties": {
          "authLabels": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "avatarUrl": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "id": {
            "format": "int64",
            "type": "integer"
          },
          "isAdmin": {
            "type": "boolean"
          },
          "isDisabled": {
            "type": "boolean"
          },
          "lastSeenAt": {
            "format": "date-time",
            "type": "string"
          },
          "lastSeenAtAge": {
            "type": "string"
          },
          "login": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserToken": {
        "description": "UserToken represents a user token",
        "properties": {
          "AuthToken": {
            "type": "string"
          },
          "AuthTokenSeen": {
            "type": "boolean"
          },
          "ClientIp": {
            "type": "string"
          },
          "CreatedAt": {
            "format": "int64",
            "type": "integer"
          },
          "Id": {
            "format": "int64",
            "type": "integer"
          },
          "PrevAuthToken": {
            "type": "string"
          },
          "RevokedAt": {
            "format": "int64",
            "type": "integer"
          },
          "RotatedAt": {
            "format": "int64",
            "type": "integer"
          },
          "SeenAt": {
            "format": "int64",
            "type": "integer"
          },
          "UnhashedToken": {
            "type": "string"
          },
          "UpdatedAt": {
            "format": "int64",
            "type": "integer"
          },
          "UserAgent": {
            "type": "string"
          },
          "UserId": {
            "format": "int64",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "Userinfo": {
        "description": "The Userinfo type is an immutable encapsulation of username and\npassword details for a URL. An existing Userinfo value is guaranteed\nto have a username set (potentially empty, as allowed by RFC 2396),\nand optionally a password.",
        "type": "object"
      },
      "ValidationError": {
        "properties": {
          "msg": {
            "example": "error message",
            "type": "string"
          }
        },
        "type": "object"
      },
      "ValueMapping": {
        "description": "ValueMapping allows mapping input values to text and color",
        "type": "object"
      },
      "ValueMappings": {
        "items": {
          "$ref": "#/components/schemas/ValueMapping"
        },
        "type": "array"
      },
      "Vector": {
        "description": "Vector is basically only an alias for model.Samples, but the\ncontract is that in a Vector, all Samples have the same timestamp.",
        "items": {
          "$ref": "#/components/schemas/Sample"
        },
        "type": "array"
      },
      "VictorOpsConfig": {
        "properties": {
          "api_key": {
            "$ref": "#/components/schemas/Secret"
          },
          "api_key_file": {
            "$ref": "#/components/schemas/Secret"
          },
          "api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "custom_fields": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "entity_display_name": {
            "type": "string"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message_type": {
            "type": "string"
          },
          "monitoring_tool": {
            "type": "string"
          },
          "routing_key": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "state_message": {
            "type": "string"
          }
        },
        "title": "VictorOpsConfig configures notifications via VictorOps.",
        "type": "object"
      },
      "VisType": {
        "title": "VisType is used to indicate how the data should be visualized in explore.",
        "type": "string"
      },
      "WebhookConfig": {
        "properties": {
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "max_alerts": {
            "description": "MaxAlerts is the maximum number of alerts to be sent per webhook message.\nAlerts exceeding this threshold will be truncated. Setting this to 0\nallows an unlimited number of alerts.",
            "format": "uint64",
            "type": "integer"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "url": {
            "$ref": "#/components/schemas/URL"
          }
        },
        "title": "WebhookConfig configures notifications via a generic webhook.",
        "type": "object"
      },
      "WechatConfig": {
        "properties": {
          "agent_id": {
            "type": "string"
          },
          "api_secret": {
            "$ref": "#/components/schemas/Secret"
          },
          "api_url": {
            "$ref": "#/components/schemas/URL"
          },
          "corp_id": {
            "type": "string"
          },
          "http_config": {
            "$ref": "#/components/schemas/HTTPClientConfig"
          },
          "message": {
            "type": "string"
          },
          "message_type": {
            "type": "string"
          },
          "send_resolved": {
            "type": "boolean"
          },
          "to_party": {
            "type": "string"
          },
          "to_tag": {
            "type": "string"
          },
          "to_user": {
            "type": "string"
          }
        },
        "title": "WechatConfig configures notifications via Wechat.",
        "type": "object"
      },
      "alert": {
        "description": "Alert alert",
        "properties": {
          "generatorURL": {
            "description": "generator URL\nFormat: uri",
            "format": "uri",
            "type": "string"
          },
          "labels": {
            "$ref": "#/components/schemas/labelSet"
          }
        },
        "required": [
          "labels"
        ],
        "type": "object"
      },
      "alertGroup": {
        "description": "AlertGroup alert group",
        "properties": {
          "alerts": {
            "description": "alerts",
            "items": {
              "$ref": "#/components/schemas/gettableAlert"
            },
            "type": "array"
          },
          "labels": {
            "$ref": "#/components/schemas/labelSet"
          },
          "receiver": {
            "$ref": "#/components/schemas/receiver"
          }
        },
        "required": [
          "alerts",
          "labels",
          "receiver"
        ],
        "type": "object"
      },
      "alertGroups": {
        "description": "AlertGroups alert groups",
        "items": {
          "$ref": "#/components/schemas/alertGroup"
        },
        "type": "array"
      },
      "alertStatus": {
        "description": "AlertStatus alert status",
        "properties": {
          "inhibitedBy": {
            "description": "inhibited by",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "silencedBy": {
            "description": "silenced by",
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "state": {
            "description": "state",
            "enum": [
              "[unprocessed active suppressed]"
            ],
            "type": "string"
          }
        },
        "required": [
          "inhibitedBy",
          "silencedBy",
          "state"
        ],
        "type": "object"
      },
      "alertmanagerConfig": {
        "description": "AlertmanagerConfig alertmanager config",
        "properties": {
          "original": {
            "description": "original",
            "type": "string"
          }
        },
        "required": [
          "original"
        ],
        "type": "object"
      },
      "alertmanagerStatus": {
        "description": "AlertmanagerStatus alertmanager status",
        "properties": {
          "cluster": {
            "$ref": "#/components/schemas/clusterStatus"
          },
          "config": {
            "$ref": "#/components/schemas/alertmanagerConfig"
          },
          "uptime": {
            "description": "uptime",
            "format": "date-time",
            "type": "string"
          },
          "versionInfo": {
            "$ref": "#/components/schemas/versionInfo"
          }
        },
        "required": [
          "cluster",
          "config",
          "uptime",
          "versionInfo"
        ],
        "type": "object"
      },
      "clusterStatus": {
        "description": "ClusterStatus cluster status",
        "properties": {
          "name": {
            "description": "name",
            "type": "string"
          },
          "peers": {
            "description": "peers",
            "items": {
              "$ref": "#/components/schemas/peerStatus"
            },
            "type": "array"
          },
          "status": {
            "description": "status",
            "enum": [
              "[ready settling disabled]"
            ],
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "type": "object"
      },
      "gettableAlert": {
        "description": "GettableAlert gettable alert",
        "properties": {
          "annotations": {
            "$ref": "#/components/schemas/labelSet"
          },
          "endsAt": {
            "description": "ends at",
            "format": "date-time",
            "type": "string"
          },
          "fingerprint": {
            "description": "fingerprint",
            "type": "string"
          },
          "generatorURL": {
            "description": "generator URL\nFormat: uri",
            "format": "uri",
            "type": "string"
          },
          "labels": {
            "$ref": "#/components/schemas/labelSet"
          },
          "receivers": {
            "description": "receivers",
            "items": {
              "$ref": "#/components/schemas/receiver"
            },
            "type": "array"
          },
          "startsAt": {
            "description": "starts at",
            "format": "date-time",
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/alertStatus"
          },
          "updatedAt": {
            "description": "updated at",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "labels",
          "annotations",
          "endsAt",
          "fingerprint",
          "receivers",
          "startsAt",
          "status",
          "updatedAt"
        ],
        "type": "object"
      },
      "gettableAlerts": {
        "description": "GettableAlerts gettable alerts",
        "items": {
          "$ref": "#/components/schemas/gettableAlert"
        },
        "type": "array"
      },
      "gettableSilence": {
        "description": "GettableSilence gettable silence",
        "properties": {
          "comment": {
            "description": "comment",
            "type": "string"
          },
          "createdBy": {
            "description": "created by",
            "type": "string"
          },
          "endsAt": {
            "description": "ends at",
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "description": "id",
            "type": "string"
          },
          "matchers": {
            "$ref": "#/components/schemas/matchers"
          },
          "startsAt": {
            "description": "starts at",
            "format": "date-time",
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/silenceStatus"
          },
          "updatedAt": {
            "description": "updated at",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "comment",
          "createdBy",
          "endsAt",
          "matchers",
          "startsAt",
          "id",
          "status",
          "updatedAt"
        ],
        "type": "object"
      },
      "gettableSilences": {
        "description": "GettableSilences gettable silences",
        "items": {
          "$ref": "#/components/schemas/gettableSilence"
        },
        "type": "array"
      },
      "integration": {
        "properties": {
          "lastNotifyAttempt": {
            "description": "A timestamp indicating the last attempt to deliver a notification regardless of the outcome.\nFormat: date-time",
            "format": "date-time",
            "type": "string"
          },
          "lastNotifyAttemptDuration": {
            "description": "Duration of the last attempt to deliver a notification in humanized format (`1s` or `15ms`, etc).",
            "type": "string"
          },
          "lastNotifyAttemptError": {
            "description": "Error string for the last attempt to deliver a notification. Empty if the last attempt was successful.",
            "type": "string"
          },
          "name": {
            "description": "name",
            "type": "string"
          },
          "sendResolved": {
            "description": "send resolved",
            "type": "boolean"
          }
        },
        "required": [
          "name",
          "sendResolved"
        ],
        "type": "object"
      },
      "labelSet": {
        "additionalProperties": {
          "type": "string"
        },
        "description": "LabelSet label set",
        "type": "object"
      },
      "matcher": {
        "description": "Matcher matcher",
        "properties": {
          "isEqual": {
            "description": "is equal",
            "type": "boolean"
          },
          "isRegex": {
            "description": "is regex",
            "type": "boolean"
          },
          "name": {
            "description": "name",
            "type": "string"
          },
          "value": {
            "description": "value",
            "type": "string"
          }
        },
        "required": [
          "isRegex",
          "name",
          "value"
        ],
        "type": "object"
      },
      "matchers": {
        "description": "Matchers matchers",
        "items": {
          "$ref": "#/components/schemas/matcher"
        },
        "type": "array"
      },
      "overrideLabels": {
        "additionalProperties": {
          "type": "string"
        },
        "description": "The custom marshaling for labels.Labels ends up doing this anyways.",
        "title": "override the labels type with a map for generation.",
        "type": "object"
      },
      "peerStatus": {
        "description": "PeerStatus peer status",
        "properties": {
          "address": {
            "description": "address",
            "type": "string"
          },
          "name": {
            "description": "name",
            "type": "string"
          }
        },
        "required": [
          "address",
          "name"
        ],
        "type": "object"
      },
      "postableAlert": {
        "description": "PostableAlert postable alert",
        "properties": {
          "annotations": {
            "$ref": "#/components/schemas/labelSet"
          },
          "endsAt": {
            "description": "ends at\nFormat: date-time",
            "format": "date-time",
            "type": "string"
          },
          "generatorURL": {
            "description": "generator URL\nFormat: uri",
            "format": "uri",
            "type": "string"
          },
          "labels": {
            "$ref": "#/components/schemas/labelSet"
          },
          "startsAt": {
            "description": "starts at\nFormat: date-time",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "labels"
        ],
        "type": "object"
      },
      "postableAlerts": {
        "description": "PostableAlerts postable alerts",
        "items": {
          "$ref": "#/components/schemas/postableAlert"
        },
        "type": "array"
      },
      "postableSilence": {
        "description": "PostableSilence postable silence",
        "properties": {
          "comment": {
            "description": "comment",
            "type": "string"
          },
          "createdBy": {
            "description": "created by",
            "type": "string"
          },
          "endsAt": {
            "description": "ends at",
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "description": "id",
            "type": "string"
          },
          "matchers": {
            "$ref": "#/components/schemas/matchers"
          },
          "startsAt": {
            "description": "starts at",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "comment",
          "createdBy",
          "endsAt",
          "matchers",
          "startsAt"
        ],
        "type": "object"
      },
      "receiver": {
        "properties": {
          "active": {
            "description": "active",
            "type": "boolean"
          },
          "integrations": {
            "description": "integrations",
            "items": {
              "$ref": "#/components/schemas/integration"
            },
            "type": "array"
          },
          "name": {
            "description": "name",
            "type": "string"
          }
        },
        "required": [
          "active",
          "integrations",
          "name"
        ],
        "type": "object"
      },
      "silence": {
        "description": "Silence silence",
        "properties": {
          "comment": {
            "description": "comment",
            "type": "string"
          },
          "createdBy": {
            "description": "created by",
            "type": "string"
          },
          "endsAt": {
            "description": "ends at",
            "format": "date-time",
            "type": "string"
          },
          "matchers": {
            "$ref": "#/components/schemas/matchers"
          },
          "startsAt": {
            "description": "starts at",
            "format": "date-time",
            "type": "string"
          }
        },
        "required": [
          "comment",
          "createdBy",
          "endsAt",
          "matchers",
          "startsAt"
        ],
        "type": "object"
      },
      "silenceStatus": {
        "description": "SilenceStatus silence status",
        "properties": {
          "state": {
            "description": "state",
            "enum": [
              "[expired active pending]"
            ],
            "type": "string"
          }
        },
        "required": [
          "state"
        ],
        "type": "object"
      },
      "versionInfo": {
        "description": "VersionInfo version info",
        "properties": {
          "branch": {
            "description": "branch",
            "type": "string"
          },
          "buildDate": {
            "description": "build date",
            "type": "string"
          },
          "buildUser": {
            "description": "build user",
            "type": "string"
          },
          "goVersion": {
            "description": "go version",
            "type": "string"
          },
          "revision": {
            "description": "revision",
            "type": "string"
          },
          "version": {
            "description": "version",
            "type": "string"
          }
        },
        "required": [
          "branch",
          "buildDate",
          "buildUser",
          "goVersion",
          "revision",
          "version"
        ],
        "type": "object"
      }
    },
    "securitySchemes": {
      "api_key": {
        "in": "header",
        "name": "Authorization",
        "type": "apiKey"
      },
      "basic": {
        "scheme": "basic",
        "type": "http"
      }
    }
  },
  "info": {
    "contact": {
      "email": "hello@grafana.com",
      "name": "Grafana Labs",
      "url": "https://grafana.com"
    },
    "description": "The Grafana backend exposes an HTTP API, the same API is used by the frontend to do\neverything from saving dashboards, creating users and updating data sources.",
    "title": "Grafana HTTP API.",
    "version": "0.0.1"
  },
  "openapi": "3.0.3",
  "paths": {
    "/access-control/roles": {
      "get": {
        "description": "Gets all existing roles. The response contains all global and organization local roles, for the organization which user is signed in.\n\nYou need to have a permission with action `roles:read` and scope `roles:*`.",
        "operationId": "listRoles",
        "parameters": [
          {
            "in": "query",
            "name": "delegatable",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/listRolesResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all roles.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "post": {
        "description": "Creates a new custom role and maps given permissions to that role. Note that roles with the same prefix as Fixed Roles can’t be created.\n\nYou need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has.\nFor example, if a user does not have required permissions for creating users, they won’t be able to create a custom role which allows to do that. This is done to prevent escalation of privileges.",
        "operationId": "createRole",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRoleForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "201": {
            "$ref": "#/components/responses/createRoleResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create a new custom role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/roles/{roleUID}": {
      "delete": {
        "description": "Delete a role with the given UID, and it’s permissions. If the role is assigned to a built-in role, the deletion operation will fail, unless force query param is set to true, and in that case all assignments will also be deleted.\n\nYou need to have a permission with action `roles:delete` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only delete a custom role with the same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to delete a custom role which allows to do that.",
        "operationId": "deleteRole",
        "parameters": [
          {
            "in": "query",
            "name": "force",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "query",
            "name": "global",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete a custom role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "get": {
        "description": "Get a role for the given UID.\n\nYou need to have a permission with action `roles:read` and scope `roles:*`.",
        "operationId": "getRole",
        "parameters": [
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getRoleResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "put": {
        "description": "You need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has.",
        "operationId": "updateRole",
        "parameters": [
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateRoleCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getRoleResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update a custom role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/roles/{roleUID}/assignments": {
      "get": {
        "description": "Get role assignments for the role with the given UID.\n\nYou need to have a permission with action `teams.roles:list` and scope `teams:id:*` and `users.roles:list` and scope `users:id:*`.",
        "operationId": "getRoleAssignments",
        "parameters": [
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getRoleAssignmentsResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get role assignments.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "put": {
        "description": "Set role assignments for the role with the given UID.\n\nYou need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate`, and `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate`.",
        "operationId": "setRoleAssignments",
        "parameters": [
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetRoleAssignmentsCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/setRoleAssignmentsResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Set role assignments.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/status": {
      "get": {
        "description": "Returns an indicator to check if fine-grained access control is enabled or not.\n\nYou need to have a permission with action `status:accesscontrol` and scope `services:accesscontrol`.",
        "operationId": "getAccessControlStatus",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAccessControlStatusResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get status.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/teams/{teamId}/roles": {
      "get": {
        "description": "You need to have a permission with action `teams.roles:read` and scope `teams:id:\u003cteam ID\u003e`.",
        "operationId": "listTeamRoles",
        "parameters": [
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get team roles.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "post": {
        "description": "You need to have a permission with action `teams.roles:add` and scope `permissions:type:delegate`.",
        "operationId": "addTeamRole",
        "parameters": [
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddTeamRoleCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add team role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "put": {
        "description": "You need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate` for each.",
        "operationId": "setTeamRoles",
        "parameters": [
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update team role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/teams/{teamId}/roles/{roleUID}": {
      "delete": {
        "description": "You need to have a permission with action `teams.roles:remove` and scope `permissions:type:delegate`.",
        "operationId": "removeTeamRole",
        "parameters": [
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove team role.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/users/{userId}/roles": {
      "get": {
        "description": "Lists the roles that have been directly assigned to a given user. The list does not include built-in roles (Viewer, Editor, Admin or Grafana Admin), and it does not include roles that have been inherited from a team.\n\nYou need to have a permission with action `users.roles:read` and scope `users:id:\u003cuser ID\u003e`.",
        "operationId": "listUserRoles",
        "parameters": [
          {
            "in": "path",
            "name": "userId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAllRolesResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "List roles assigned to a user.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "post": {
        "description": "Assign a role to a specific user. For bulk updates consider Set user role assignments.\n\nYou need to have a permission with action `users.roles:add` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only assign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign a role which will allow to do that. This is done to prevent escalation of privileges.",
        "operationId": "addUserRole",
        "parameters": [
          {
            "in": "path",
            "name": "userId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddUserRoleCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add a user role assignment.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      },
      "put": {
        "description": "Update the user’s role assignments to match the provided set of UIDs. This will remove any assigned roles that aren’t in the request and add roles that are in the set but are not already assigned to the user.\nIf you want to add or remove a single role, consider using Add a user role assignment or Remove a user role assignment instead.\n\nYou need to have a permission with action `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate` for each. `permissions:type:delegate`  scope ensures that users can only assign or unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign or unassign a role which will allow to do that. This is done to prevent escalation of privileges.",
        "operationId": "setUserRoles",
        "parameters": [
          {
            "in": "path",
            "name": "userId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetUserRolesCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Set user role assignments.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/access-control/users/{userId}/roles/{roleUID}": {
      "delete": {
        "description": "Revoke a role from a user. For bulk updates consider Set user role assignments.\n\nYou need to have a permission with action `users.roles:remove` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to unassign a role which will allow to do that. This is done to prevent escalation of privileges.",
        "operationId": "removeUserRole",
        "parameters": [
          {
            "description": "A flag indicating if the assignment is global or not. If set to false, the default org ID of the authenticated user will be used from the request to remove assignment.",
            "in": "query",
            "name": "global",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "path",
            "name": "roleUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "userId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove a user role assignment.",
        "tags": [
          "access_control",
          "enterprise"
        ]
      }
    },
    "/admin/ldap-sync-status": {
      "get": {
        "description": "You need to have a permission with action `ldap.status:read`.",
        "operationId": "getSyncStatus",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getSyncStatusResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Returns the current state of the LDAP background sync integration.",
        "tags": [
          "ldap_debug"
        ]
      }
    },
    "/admin/ldap/reload": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.config:reload`.",
        "operationId": "reloadLDAPCfg",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Reloads the LDAP configuration.",
        "tags": [
          "admin_ldap"
        ]
      }
    },
    "/admin/ldap/status": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.status:read`.",
        "operationId": "getLDAPStatus",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Attempts to connect to all the configured LDAP servers and returns information on whenever they're available or not.",
        "tags": [
          "admin_ldap"
        ]
      }
    },
    "/admin/ldap/sync/{user_id}": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:sync`.",
        "operationId": "postSyncUserWithLDAP",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Enables a single Grafana user to be synchronized against LDAP.",
        "tags": [
          "admin_ldap"
        ]
      }
    },
    "/admin/ldap/{user_name}": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:read`.",
        "operationId": "getUserFromLDAP",
        "parameters": [
          {
            "in": "path",
            "name": "user_name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Finds an user based on a username in LDAP. This helps illustrate how would the particular user be mapped in Grafana when synced.",
        "tags": [
          "admin_ldap"
        ]
      }
    },
    "/admin/pause-all-alerts": {
      "post": {
        "operationId": "pauseAllAlerts",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PauseAllAlertsCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/pauseAlertsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Pause/unpause all (legacy) alerts.",
        "tags": [
          "admin"
        ]
      }
    },
    "/admin/provisioning/access-control/reload": {
      "post": {
        "operationId": "adminProvisioningReloadAccessControl",
        "responses": {
          "202": {
            "$ref": "#/components/responses/acceptedResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          }
        },
        "summary": "You need to have a permission with action `provisioning:reload` with scope `provisioners:accesscontrol`.",
        "tags": [
          "access_control_provisioning",
          "enterprise"
        ]
      }
    },
    "/admin/provisioning/dashboards/reload": {
      "post": {
        "description": "Reloads the provisioning config files for dashboards again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:dashboards`.",
        "operationId": "adminProvisioningReloadDashboards",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Reload dashboard provisioning configurations.",
        "tags": [
          "admin_provisioning"
        ]
      }
    },
    "/admin/provisioning/datasources/reload": {
      "post": {
        "description": "Reloads the provisioning config files for datasources again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:datasources`.",
        "operationId": "adminProvisioningReloadDatasources",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Reload datasource provisioning configurations.",
        "tags": [
          "admin_provisioning"
        ]
      }
    },
    "/admin/provisioning/notifications/reload": {
      "post": {
        "description": "Reloads the provisioning config files for legacy alert notifiers again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:notifications`.",
        "operationId": "adminProvisioningReloadNotifications",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Reload legacy alert notifier provisioning configurations.",
        "tags": [
          "admin_provisioning"
        ]
      }
    },
    "/admin/provisioning/plugins/reload": {
      "post": {
        "description": "Reloads the provisioning config files for plugins again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:plugin`.",
        "operationId": "adminProvisioningReloadPlugins",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Reload plugin provisioning configurations.",
        "tags": [
          "admin_provisioning"
        ]
      }
    },
    "/admin/settings": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `settings:read` and scopes: `settings:*`, `settings:auth.saml:` and `settings:auth.saml:enabled` (property level).",
        "operationId": "adminGetSettings",
        "responses": {
          "200": {
            "$ref": "#/components/responses/adminGetSettingsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Fetch settings.",
        "tags": [
          "admin"
        ]
      }
    },
    "/admin/stats": {
      "get": {
        "description": "Only works with Basic Authentication (username and password). See introduction for an explanation.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `server:stats:read`.",
        "operationId": "adminGetStats",
        "responses": {
          "200": {
            "$ref": "#/components/responses/adminGetStatsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Fetch Grafana Stats.",
        "tags": [
          "admin"
        ]
      }
    },
    "/admin/users": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:create`.\nNote that OrgId is an optional parameter that can be used to assign a new user to a different organization when `auto_assign_org` is set to `true`.",
        "operationId": "adminCreateUser",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AdminCreateUserForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/adminCreateUserResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "412": {
            "$ref": "#/components/responses/preconditionFailedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Create new user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:delete` and scope `global.users:*`.",
        "operationId": "adminDeleteUser",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Delete global User.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/auth-tokens": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:list` and scope `global.users:*`.",
        "operationId": "adminGetUserAuthTokens",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/adminGetUserAuthTokensResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Return a list of all auth tokens (devices) that the user currently have logged in from.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/disable": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:disable` and scope `global.users:1` (userIDScope).",
        "operationId": "adminDisableUser",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Disable user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/enable": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:enable` and scope `global.users:1` (userIDScope).",
        "operationId": "adminEnableUser",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Enable user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/logout": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.logout` and scope `global.users:*`.",
        "operationId": "adminLogoutUser",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Logout user revokes all auth tokens (devices) for the user. User of issued auth tokens (devices) will no longer be logged in and will be required to authenticate again upon next activity.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/password": {
      "put": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.password:update` and scope `global.users:*`.",
        "operationId": "adminUpdateUserPassword",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AdminUpdateUserPasswordForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Set password for user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/permissions": {
      "put": {
        "description": "Only works with Basic Authentication (username and password). See introduction for an explanation.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.permissions:update` and scope `global.users:*`.",
        "operationId": "adminUpdateUserPermissions",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AdminUpdateUserPermissionsForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Set permissions for user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/quotas": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:list` and scope `global.users:1` (userIDScope).",
        "operationId": "getUserQuota",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQuotaResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Fetch user quota.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/quotas/{quota_target}": {
      "put": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:update` and scope `global.users:1` (userIDScope).",
        "operationId": "updateUserQuota",
        "parameters": [
          {
            "in": "path",
            "name": "quota_target",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateUserQuotaCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Update user quota.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/admin/users/{user_id}/revoke-auth-token": {
      "post": {
        "description": "Revokes the given auth token (device) for the user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:update` and scope `global.users:*`.",
        "operationId": "adminRevokeUserAuthToken",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RevokeAuthTokenCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Revoke auth token for user.",
        "tags": [
          "admin_users"
        ]
      }
    },
    "/alert-notifications": {
      "get": {
        "description": "Returns all notification channels that the authenticated user has permission to view.",
        "operationId": "getAlertNotificationChannels",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all notification channels.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      },
      "post": {
        "description": "You can find the full list of [supported notifiers](https://grafana.com/docs/grafana/latest/alerting/old-alerting/notifications/#list-of-supported-notifiers) on the alert notifiers page.",
        "operationId": "createAlertNotificationChannel",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateAlertNotificationCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create notification channel.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      }
    },
    "/alert-notifications/lookup": {
      "get": {
        "description": "Returns all notification channels, but with less detailed information. Accessible by any authenticated user and is mainly used by providing alert notification channels in Grafana UI when configuring alert rule.",
        "operationId": "getAlertNotificationLookup",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationLookupResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all notification channels (lookup).",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      }
    },
    "/alert-notifications/test": {
      "post": {
        "description": "Sends a test notification to the channel.",
        "operationId": "notificationChannelTest",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NotificationTestCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "412": {
            "$ref": "#/components/responses/SMTPNotEnabledError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Test notification channel.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      }
    },
    "/alert-notifications/uid/{notification_channel_uid}": {
      "delete": {
        "description": "Deletes an existing notification channel identified by UID.",
        "operationId": "deleteAlertNotificationChannelByUID",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/deleteAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete alert notification by UID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      },
      "get": {
        "description": "Returns the notification channel given the notification channel UID.",
        "operationId": "getAlertNotificationChannelByUID",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get notification channel by UID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      },
      "put": {
        "description": "Updates an existing notification channel identified by uid.",
        "operationId": "updateAlertNotificationChannelByUID",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateAlertNotificationWithUidCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update notification channel by UID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      }
    },
    "/alert-notifications/{notification_channel_id}": {
      "delete": {
        "description": "Deletes an existing notification channel identified by ID.",
        "operationId": "deleteAlertNotificationChannel",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete alert notification by ID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      },
      "get": {
        "description": "Returns the notification channel given the notification channel ID.",
        "operationId": "getAlertNotificationChannelByID",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get notification channel by ID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      },
      "put": {
        "description": "Updates an existing notification channel identified by ID.",
        "operationId": "updateAlertNotificationChannel",
        "parameters": [
          {
            "in": "path",
            "name": "notification_channel_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateAlertNotificationCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertNotificationChannelResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update notification channel by ID.",
        "tags": [
          "legacy_alerts_notification_channels"
        ]
      }
    },
    "/alerts": {
      "get": {
        "operationId": "getAlerts",
        "parameters": [
          {
            "description": "Limit response to alerts in specified dashboard(s). You can specify multiple dashboards.",
            "in": "query",
            "name": "dashboardId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit response to alert for a specified panel on a dashboard.",
            "in": "query",
            "name": "panelId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Limit response to alerts having a name like this value.",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Return alerts with one or more of the following alert states",
            "in": "query",
            "name": "state",
            "schema": {
              "enum": [
                "all",
                "no_data",
                "paused",
                "alerting",
                "ok",
                "pending",
                "unknown"
              ],
              "type": "string"
            }
          },
          {
            "description": "Limit response to X number of alerts.",
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Limit response to alerts of dashboards in specified folder(s). You can specify multiple folders",
            "in": "query",
            "name": "folderId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Limit response to alerts having a dashboard name like this value./ Limit response to alerts having a dashboard name like this value.",
            "in": "query",
            "name": "dashboardQuery",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Limit response to alerts of dashboards with specified tags. To do an “AND” filtering with multiple tags, specify the tags parameter multiple times",
            "in": "query",
            "name": "dashboardTag",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get legacy alerts.",
        "tags": [
          "legacy_alerts"
        ]
      }
    },
    "/alerts/states-for-dashboard": {
      "get": {
        "operationId": "getDashboardStates",
        "parameters": [
          {
            "in": "query",
            "name": "dashboardId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDashboardStatesResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get alert states for a dashboard.",
        "tags": [
          "legacy_alerts"
        ]
      }
    },
    "/alerts/test": {
      "post": {
        "operationId": "testAlert",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AlertTestCommand"
              }
            }
          },
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/testAlertResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Test alert.",
        "tags": [
          "legacy_alerts"
        ]
      }
    },
    "/alerts/{alert_id}": {
      "get": {
        "description": "“evalMatches” data in the response is cached in the db when and only when the state of the alert changes (e.g. transitioning from “ok” to “alerting” state).\nIf data from one server triggers the alert first and, before that server is seen leaving alerting state, a second server also enters a state that would trigger the alert, the second server will not be visible in “evalMatches” data.",
        "operationId": "getAlertByID",
        "parameters": [
          {
            "in": "path",
            "name": "alert_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAlertResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get alert by ID.",
        "tags": [
          "legacy_alerts"
        ]
      }
    },
    "/alerts/{alert_id}/pause": {
      "post": {
        "operationId": "pauseAlert",
        "parameters": [
          {
            "in": "path",
            "name": "alert_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PauseAlertCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/pauseAlertResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Pause/unpause alert by id.",
        "tags": [
          "legacy_alerts"
        ]
      }
    },
    "/annotations": {
      "get": {
        "description": "Starting in Grafana v6.4 regions annotations are now returned in one entity that now includes the timeEnd property.",
        "operationId": "getAnnotations",
        "parameters": [
          {
            "description": "Find annotations created after specific epoch datetime in milliseconds.",
            "in": "query",
            "name": "from",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Find annotations created before specific epoch datetime in milliseconds.",
            "in": "query",
            "name": "to",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Limit response to annotations created by specific user.",
            "in": "query",
            "name": "userId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Find annotations for a specified alert.",
            "in": "query",
            "name": "alertId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Find annotations that are scoped to a specific dashboard",
            "in": "query",
            "name": "dashboardId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Find annotations that are scoped to a specific dashboard",
            "in": "query",
            "name": "dashboardUID",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Find annotations that are scoped to a specific panel",
            "in": "query",
            "name": "panelId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Max limit for results returned.",
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Use this to filter organization annotations. Organization annotations are annotations from an annotation data source that are not connected specifically to a dashboard or panel. You can filter by multiple tags.",
            "in": "query",
            "name": "tags",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Return alerts or user created annotations",
            "in": "query",
            "name": "type",
            "schema": {
              "enum": [
                "alert",
                "annotation"
              ],
              "type": "string"
            }
          },
          {
            "description": "Match any or all tags",
            "in": "query",
            "name": "matchAny",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAnnotationsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Find Annotations.",
        "tags": [
          "annotations"
        ]
      },
      "post": {
        "description": "Creates an annotation in the Grafana database. The dashboardId and panelId fields are optional. If they are not specified then an organization annotation is created and can be queried in any dashboard that adds the Grafana annotations data source. When creating a region annotation include the timeEnd property.\nThe format for `time` and `timeEnd` should be epoch numbers in millisecond resolution.\nThe response for this HTTP request is slightly different in versions prior to v6.4. In prior versions you would also get an endId if you where creating a region. But in 6.4 regions are represented using a single event with time and timeEnd properties.",
        "operationId": "postAnnotation",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostAnnotationsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postAnnotationResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create Annotation.",
        "tags": [
          "annotations"
        ]
      }
    },
    "/annotations/graphite": {
      "post": {
        "description": "Creates an annotation by using Graphite-compatible event format. The `when` and `data` fields are optional. If `when` is not specified then the current time will be used as annotation’s timestamp. The `tags` field can also be in prior to Graphite `0.10.0` format (string with multiple tags being separated by a space).",
        "operationId": "postGraphiteAnnotation",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PostGraphiteAnnotationsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postAnnotationResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create Annotation in Graphite format.",
        "tags": [
          "annotations"
        ]
      }
    },
    "/annotations/mass-delete": {
      "post": {
        "operationId": "massDeleteAnnotations",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MassDeleteAnnotationsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete multiple annotations.",
        "tags": [
          "annotations"
        ]
      }
    },
    "/annotations/tags": {
      "get": {
        "description": "Find all the event tags created in the annotations.",
        "operationId": "getAnnotationTags",
        "parameters": [
          {
            "description": "Tag is a string that you can use to filter tags.",
            "in": "query",
            "name": "tag",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Max limit for results returned.",
            "in": "query",
            "name": "limit",
            "schema": {
              "default": "100",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAnnotationTagsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Find Annotations Tags.",
        "tags": [
          "annotations"
        ]
      }
    },
    "/annotations/{annotation_id}": {
      "delete": {
        "description": "Deletes the annotation that matches the specified ID.",
        "operationId": "deleteAnnotationByID",
        "parameters": [
          {
            "in": "path",
            "name": "annotation_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete Annotation By ID.",
        "tags": [
          "annotations"
        ]
      },
      "get": {
        "operationId": "getAnnotationByID",
        "parameters": [
          {
            "in": "path",
            "name": "annotation_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAnnotationByIDResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Annotation by ID.",
        "tags": [
          "annotations"
        ]
      },
      "patch": {
        "description": "Updates one or more properties of an annotation that matches the specified ID.\nThis operation currently supports updating of the `text`, `tags`, `time` and `timeEnd` properties.\nThis is available in Grafana 6.0.0-beta2 and above.",
        "operationId": "patchAnnotation",
        "parameters": [
          {
            "in": "path",
            "name": "annotation_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PatchAnnotationsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Patch Annotation.",
        "tags": [
          "annotations"
        ]
      },
      "put": {
        "description": "Updates all properties of an annotation that matches the specified id. To only update certain property, consider using the Patch Annotation operation.",
        "operationId": "updateAnnotation",
        "parameters": [
          {
            "in": "path",
            "name": "annotation_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateAnnotationsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Annotation.",
        "tags": [
          "annotations"
        ]
      }
    },
    "/api/v1/provisioning/alert-rules": {
      "post": {
        "operationId": "RoutePostAlertRule",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProvisionedAlertRule"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProvisionedAlertRule"
                }
              }
            },
            "description": "ProvisionedAlertRule"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Create a new alert rule.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/alert-rules/{UID}": {
      "delete": {
        "operationId": "RouteDeleteAlertRule",
        "parameters": [
          {
            "description": "Alert rule UID",
            "in": "path",
            "name": "UID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "204": {
            "description": " The alert rule was deleted successfully."
          }
        },
        "summary": "Delete a specific alert rule by UID.",
        "tags": [
          "provisioning"
        ]
      },
      "get": {
        "operationId": "RouteGetAlertRule",
        "parameters": [
          {
            "description": "Alert rule UID",
            "in": "path",
            "name": "UID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProvisionedAlertRule"
                }
              }
            },
            "description": "ProvisionedAlertRule"
          },
          "404": {
            "description": " Not found."
          }
        },
        "summary": "Get a specific alert rule by UID.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutAlertRule",
        "parameters": [
          {
            "description": "Alert rule UID",
            "in": "path",
            "name": "UID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProvisionedAlertRule"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProvisionedAlertRule"
                }
              }
            },
            "description": "ProvisionedAlertRule"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Update an existing alert rule.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/contact-points": {
      "get": {
        "operationId": "RouteGetContactpoints",
        "parameters": [
          {
            "description": "Filter by name",
            "in": "query",
            "name": "name",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContactPoints"
                }
              }
            },
            "description": "ContactPoints"
          }
        },
        "summary": "Get all the contact points.",
        "tags": [
          "provisioning"
        ]
      },
      "post": {
        "operationId": "RoutePostContactpoints",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EmbeddedContactPoint"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EmbeddedContactPoint"
                }
              }
            },
            "description": "EmbeddedContactPoint"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Create a contact point.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/contact-points/{UID}": {
      "delete": {
        "operationId": "RouteDeleteContactpoints",
        "parameters": [
          {
            "description": "UID is the contact point unique identifier",
            "in": "path",
            "name": "UID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "204": {
            "description": " The contact point was deleted successfully."
          }
        },
        "summary": "Delete a contact point.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutContactpoint",
        "parameters": [
          {
            "description": "UID is the contact point unique identifier",
            "in": "path",
            "name": "UID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EmbeddedContactPoint"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ack"
                }
              }
            },
            "description": "Ack"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Update an existing contact point.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/folder/{FolderUID}/rule-groups/{Group}": {
      "get": {
        "operationId": "RouteGetAlertRuleGroup",
        "parameters": [
          {
            "in": "path",
            "name": "FolderUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "Group",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AlertRuleGroup"
                }
              }
            },
            "description": "AlertRuleGroup"
          },
          "404": {
            "description": " Not found."
          }
        },
        "summary": "Get a rule group.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutAlertRuleGroup",
        "parameters": [
          {
            "in": "path",
            "name": "FolderUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "Group",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AlertRuleGroup"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AlertRuleGroup"
                }
              }
            },
            "description": "AlertRuleGroup"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Update the interval of a rule group.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/mute-timings": {
      "get": {
        "operationId": "RouteGetMuteTimings",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MuteTimings"
                }
              }
            },
            "description": "MuteTimings"
          }
        },
        "summary": "Get all the mute timings.",
        "tags": [
          "provisioning"
        ]
      },
      "post": {
        "operationId": "RoutePostMuteTiming",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MuteTimeInterval"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "201": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MuteTimeInterval"
                }
              }
            },
            "description": "MuteTimeInterval"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Create a new mute timing.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/mute-timings/{name}": {
      "delete": {
        "operationId": "RouteDeleteMuteTiming",
        "parameters": [
          {
            "description": "Mute timing name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "204": {
            "description": " The mute timing was deleted successfully."
          }
        },
        "summary": "Delete a mute timing.",
        "tags": [
          "provisioning"
        ]
      },
      "get": {
        "operationId": "RouteGetMuteTiming",
        "parameters": [
          {
            "description": "Mute timing name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MuteTimeInterval"
                }
              }
            },
            "description": "MuteTimeInterval"
          },
          "404": {
            "description": " Not found."
          }
        },
        "summary": "Get a mute timing.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutMuteTiming",
        "parameters": [
          {
            "description": "Mute timing name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MuteTimeInterval"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MuteTimeInterval"
                }
              }
            },
            "description": "MuteTimeInterval"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Replace an existing mute timing.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/policies": {
      "delete": {
        "operationId": "RouteResetPolicyTree",
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ack"
                }
              }
            },
            "description": "Ack"
          }
        },
        "summary": "Clears the notification policy tree.",
        "tags": [
          "provisioning"
        ]
      },
      "get": {
        "operationId": "RouteGetPolicyTree",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Route"
                }
              }
            },
            "description": "Route"
          }
        },
        "summary": "Get the notification policy tree.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutPolicyTree",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Route"
              }
            }
          },
          "description": "The new notification routing tree to use",
          "x-originalParamName": "Body"
        },
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ack"
                }
              }
            },
            "description": "Ack"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Sets the notification policy tree.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/templates": {
      "get": {
        "operationId": "RouteGetTemplates",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MessageTemplates"
                }
              }
            },
            "description": "MessageTemplates"
          },
          "404": {
            "description": " Not found."
          }
        },
        "summary": "Get all message templates.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/api/v1/provisioning/templates/{name}": {
      "delete": {
        "operationId": "RouteDeleteTemplate",
        "parameters": [
          {
            "description": "Template Name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "204": {
            "description": " The template was deleted successfully."
          }
        },
        "summary": "Delete a template.",
        "tags": [
          "provisioning"
        ]
      },
      "get": {
        "operationId": "RouteGetTemplate",
        "parameters": [
          {
            "description": "Template Name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MessageTemplate"
                }
              }
            },
            "description": "MessageTemplate"
          },
          "404": {
            "description": " Not found."
          }
        },
        "summary": "Get a message template.",
        "tags": [
          "provisioning"
        ]
      },
      "put": {
        "operationId": "RoutePutTemplate",
        "parameters": [
          {
            "description": "Template Name",
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MessageTemplateContent"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "202": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MessageTemplate"
                }
              }
            },
            "description": "MessageTemplate"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            },
            "description": "ValidationError"
          }
        },
        "summary": "Updates an existing template.",
        "tags": [
          "provisioning"
        ]
      }
    },
    "/auth/keys": {
      "get": {
        "description": "Will return auth keys.",
        "operationId": "getAPIkeys",
        "parameters": [
          {
            "description": "Show expired keys",
            "in": "query",
            "name": "includeExpired",
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAPIkeyResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get auth keys.",
        "tags": [
          "api_keys"
        ]
      },
      "post": {
        "description": "Will return details of the created API key.",
        "operationId": "addAPIkey",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postAPIkeyResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Creates an API key.",
        "tags": [
          "api_keys"
        ]
      }
    },
    "/auth/keys/{id}": {
      "delete": {
        "operationId": "deleteAPIkey",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete API key.",
        "tags": [
          "api_keys"
        ]
      }
    },
    "/dashboard/snapshots": {
      "get": {
        "operationId": "searchDashboardSnapshots",
        "parameters": [
          {
            "description": "Search Query",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Limit the number of returned results",
            "in": "query",
            "name": "limit",
            "schema": {
              "default": 1000,
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchDashboardSnapshotsResponse"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "List snapshots.",
        "tags": [
          "snapshots"
        ]
      }
    },
    "/dashboards/calculate-diff": {
      "post": {
        "operationId": "calculateDashboardDiff",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "properties": {
                  "base": {
                    "$ref": "#/components/schemas/CalculateDiffTarget"
                  },
                  "diffType": {
                    "description": "The type of diff to return\nDescription:\n`basic`\n`json`",
                    "enum": [
                      "basic",
                      "json"
                    ],
                    "type": "string"
                  },
                  "new": {
                    "$ref": "#/components/schemas/CalculateDiffTarget"
                  }
                },
                "type": "object"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/calculateDashboardDiffResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Perform diff on two dashboards.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/db": {
      "post": {
        "description": "Creates a new dashboard or updates an existing dashboard.",
        "operationId": "postDashboard",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SaveDashboardCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postDashboardResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "412": {
            "$ref": "#/components/responses/preconditionFailedError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create / Update dashboard",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/home": {
      "get": {
        "operationId": "getHomeDashboard",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getHomeDashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get home dashboard.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/id/{DashboardID}/permissions": {
      "get": {
        "description": "Please refer to [updated API](#/dashboard_permissions/getDashboardPermissionsListByUID) instead",
        "operationId": "getDashboardPermissionsListByID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDashboardPermissionsListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all existing permissions for the given dashboard.",
        "tags": [
          "dashboard_permissions"
        ]
      },
      "post": {
        "description": "Please refer to [updated API](#/dashboard_permissions/updateDashboardPermissionsByUID) instead\n\nThis operation will remove existing permissions if they’re not included in the request.",
        "operationId": "updateDashboardPermissionsByID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateDashboardACLCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Updates permissions for a dashboard.",
        "tags": [
          "dashboard_permissions"
        ]
      }
    },
    "/dashboards/id/{DashboardID}/restore": {
      "post": {
        "description": "Please refer to [updated API](#/dashboard_versions/restoreDashboardVersionByUID) instead",
        "operationId": "restoreDashboardVersionByID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RestoreDashboardVersionCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postDashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Restore a dashboard to a given dashboard version.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/dashboards/id/{DashboardID}/versions": {
      "get": {
        "description": "Please refer to [updated API](#/dashboard_versions/getDashboardVersionsByUID) instead",
        "operationId": "getDashboardVersionsByID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/dashboardVersionsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all existing versions for the dashboard.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/dashboards/id/{DashboardID}/versions/{DashboardVersionID}": {
      "get": {
        "description": "Please refer to [updated API](#/dashboard_versions/getDashboardVersionByUID) instead",
        "operationId": "getDashboardVersionByID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "DashboardVersionID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/dashboardVersionResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a specific dashboard version.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/dashboards/import": {
      "post": {
        "operationId": "importDashboard",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImportDashboardRequest"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/importDashboardResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "412": {
            "$ref": "#/components/responses/preconditionFailedError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Import dashboard.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/tags": {
      "get": {
        "operationId": "getDashboardTags",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDashboardsTagsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all dashboards tags of an organisation.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/trim": {
      "post": {
        "operationId": "trimDashboard",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TrimDashboardCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/trimDashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Trim defaults from dashboard.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/uid/{uid}": {
      "delete": {
        "description": "Will delete the dashboard given the specified unique identifier (uid).",
        "operationId": "deleteDashboardByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/deleteDashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete dashboard by uid.",
        "tags": [
          "dashboards"
        ]
      },
      "get": {
        "description": "Will return the dashboard given the dashboard unique identifier (uid).",
        "operationId": "getDashboardByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/dashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get dashboard by uid.",
        "tags": [
          "dashboards"
        ]
      }
    },
    "/dashboards/uid/{uid}/permissions": {
      "get": {
        "operationId": "getDashboardPermissionsListByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDashboardPermissionsListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all existing permissions for the given dashboard.",
        "tags": [
          "dashboard_permissions"
        ]
      },
      "post": {
        "description": "This operation will remove existing permissions if they’re not included in the request.",
        "operationId": "updateDashboardPermissionsByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateDashboardACLCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Updates permissions for a dashboard.",
        "tags": [
          "dashboard_permissions"
        ]
      }
    },
    "/dashboards/uid/{uid}/restore": {
      "post": {
        "operationId": "restoreDashboardVersionByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RestoreDashboardVersionCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postDashboardResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Restore a dashboard to a given dashboard version using UID.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/dashboards/uid/{uid}/versions": {
      "get": {
        "operationId": "getDashboardVersionsByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Maximum number of results to return",
            "in": "query",
            "name": "limit",
            "schema": {
              "default": 0,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Version to start from when returning queries",
            "in": "query",
            "name": "start",
            "schema": {
              "default": 0,
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/dashboardVersionsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all existing versions for the dashboard using UID.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/dashboards/uid/{uid}/versions/{DashboardVersionID}": {
      "get": {
        "operationId": "getDashboardVersionByUID",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardVersionID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/dashboardVersionResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a specific dashboard version using UID.",
        "tags": [
          "dashboard_versions"
        ]
      }
    },
    "/datasources": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:read` and scope: `datasources:*`.",
        "operationId": "getDataSources",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDataSourcesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all data sources.",
        "tags": [
          "datasources"
        ]
      },
      "post": {
        "description": "By defining `password` and `basicAuthPassword` under secureJsonData property\nGrafana encrypts them securely as an encrypted blob in the database.\nThe response then lists the encrypted fields under secureJsonFields.\n\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:create`",
        "operationId": "addDataSource",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddDataSourceCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrUpdateDatasourceResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create a data source.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/correlations": {
      "get": {
        "operationId": "getCorrelations",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCorrelationsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all correlations.",
        "tags": [
          "correlations"
        ]
      }
    },
    "/datasources/id/{name}": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).",
        "operationId": "getDataSourceIdByName",
        "parameters": [
          {
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDataSourceIDResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get data source Id by Name.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/name/{name}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).",
        "operationId": "deleteDataSourceByName",
        "parameters": [
          {
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/deleteDataSourceByNameResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete an existing data source by name.",
        "tags": [
          "datasources"
        ]
      },
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).",
        "operationId": "getDataSourceByName",
        "parameters": [
          {
            "in": "path",
            "name": "name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDataSourceResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a single data source by Name.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/proxy/uid/{uid}/{datasource_proxy_route}": {
      "delete": {
        "description": "Proxies all calls to the actual data source.",
        "operationId": "datasourceProxyDELETEByUIDcalls",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "202": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy DELETE calls.",
        "tags": [
          "datasources"
        ]
      },
      "get": {
        "description": "Proxies all calls to the actual data source.",
        "operationId": "datasourceProxyGETByUIDcalls",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy GET calls.",
        "tags": [
          "datasources"
        ]
      },
      "post": {
        "description": "Proxies all calls to the actual data source. The data source should support POST methods for the specific path and role as defined",
        "operationId": "datasourceProxyPOSTByUIDcalls",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {}
            }
          },
          "required": true,
          "x-originalParamName": "DatasourceProxyParam"
        },
        "responses": {
          "201": {
            "description": "(empty)"
          },
          "202": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy POST calls.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/proxy/{id}/{datasource_proxy_route}": {
      "delete": {
        "description": "Proxies all calls to the actual data source.\n\nPlease refer to [updated API](#/datasources/datasourceProxyDELETEByUIDcalls) instead",
        "operationId": "datasourceProxyDELETEcalls",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "202": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy DELETE calls.",
        "tags": [
          "datasources"
        ]
      },
      "get": {
        "description": "Proxies all calls to the actual data source.\n\nPlease refer to [updated API](#/datasources/datasourceProxyGETByUIDcalls) instead",
        "operationId": "datasourceProxyGETcalls",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy GET calls.",
        "tags": [
          "datasources"
        ]
      },
      "post": {
        "description": "Proxies all calls to the actual data source. The data source should support POST methods for the specific path and role as defined\n\nPlease refer to [updated API](#/datasources/datasourceProxyPOSTByUIDcalls) instead",
        "operationId": "datasourceProxyPOSTcalls",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {}
            }
          },
          "required": true,
          "x-originalParamName": "DatasourceProxyParam"
        },
        "responses": {
          "201": {
            "description": "(empty)"
          },
          "202": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Data source proxy POST calls.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/uid/{sourceUID}/correlations": {
      "get": {
        "operationId": "getCorrelationsBySourceUID",
        "parameters": [
          {
            "in": "path",
            "name": "sourceUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCorrelationsBySourceUIDResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all correlations originating from the given data source.",
        "tags": [
          "correlations"
        ]
      },
      "post": {
        "operationId": "createCorrelation",
        "parameters": [
          {
            "in": "path",
            "name": "sourceUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCorrelationCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createCorrelationResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add correlation.",
        "tags": [
          "correlations"
        ]
      }
    },
    "/datasources/uid/{sourceUID}/correlations/{correlationUID}": {
      "get": {
        "operationId": "getCorrelation",
        "parameters": [
          {
            "in": "path",
            "name": "sourceUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "correlationUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCorrelationResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets a correlation.",
        "tags": [
          "correlations"
        ]
      },
      "patch": {
        "operationId": "updateCorrelation",
        "parameters": [
          {
            "in": "path",
            "name": "sourceUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "correlationUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateCorrelationCommand"
              }
            }
          },
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/updateCorrelationResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Updates a correlation.",
        "tags": [
          "correlations"
        ]
      }
    },
    "/datasources/uid/{uid}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).",
        "operationId": "deleteDataSourceByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete an existing data source by UID.",
        "tags": [
          "datasources"
        ]
      },
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).",
        "operationId": "getDataSourceByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDataSourceResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a single data source by UID.",
        "tags": [
          "datasources"
        ]
      },
      "put": {
        "description": "Similar to creating a data source, `password` and `basicAuthPassword` should be defined under\nsecureJsonData in order to be stored securely as an encrypted blob in the database. Then, the\nencrypted fields are listed under secureJsonFields section in the response.\n\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:write` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:1` (single data source).",
        "operationId": "updateDataSourceByUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateDataSourceCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrUpdateDatasourceResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update an existing data source.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/uid/{uid}/correlations/{correlationUID}": {
      "delete": {
        "operationId": "deleteCorrelation",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "correlationUID",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/deleteCorrelationResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete a correlation.",
        "tags": [
          "correlations"
        ]
      }
    },
    "/datasources/uid/{uid}/health": {
      "get": {
        "operationId": "checkDatasourceHealthWithUID",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Sends a health check request to the plugin datasource identified by the UID.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/uid/{uid}/resources/{datasource_proxy_route}": {
      "get": {
        "operationId": "callDatasourceResourceWithUID",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Fetch data source resources.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/{datasourceId}/disable-permissions": {
      "post": {
        "description": "Disables permissions for the data source with the given id. All existing permissions will be removed and anyone will be able to query the data source.\n\nYou need to have a permission with action `datasources.permissions:toggle` and scopes `datasources:*`, `datasources:id:*`, `datasources:id:1` (single data source).",
        "operationId": "disablePermissions",
        "parameters": [
          {
            "in": "path",
            "name": "datasourceId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrUpdateDatasourceResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Disable permissions for a data source.",
        "tags": [
          "datasource_permissions",
          "enterprise"
        ]
      }
    },
    "/datasources/{datasourceId}/enable-permissions": {
      "post": {
        "description": "Enables permissions for the data source with the given id.\nNo one except Org Admins will be able to query the data source until permissions have been added\nwhich permit certain users or teams to query the data source.\n\nYou need to have a permission with action `datasources.permissions:toggle` and scopes `datasources:*`, `datasources:id:*`, `datasources:id:1` (single data source).",
        "operationId": "enablePermissions",
        "parameters": [
          {
            "in": "path",
            "name": "datasourceId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrUpdateDatasourceResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Enable permissions for a data source.",
        "tags": [
          "datasource_permissions",
          "enterprise"
        ]
      }
    },
    "/datasources/{datasourceId}/permissions": {
      "get": {
        "description": "Gets all existing permissions for the data source with the given id.\n\nYou need to have a permission with action `datasources.permissions:read` and scopes `datasources:*`, `datasources:id:*`, `datasources:id:1` (single data source).",
        "operationId": "getAllPermissions",
        "parameters": [
          {
            "in": "path",
            "name": "datasourceId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getAllPermissionseResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get permissions for a data source.",
        "tags": [
          "datasource_permissions",
          "enterprise"
        ]
      },
      "post": {
        "description": "You need to have a permission with action `datasources.permissions:read` and scopes `datasources:*`, `datasources:id:*`, `datasources:id:1` (single data source).",
        "operationId": "addPermission",
        "parameters": [
          {
            "in": "query",
            "name": "userId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "query",
            "name": "teamId",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "query",
            "name": "builtinRole",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "permission",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "datasourceId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/addPermissionResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add permissions for a data source.",
        "tags": [
          "datasource_permissions",
          "enterprise"
        ]
      }
    },
    "/datasources/{datasourceId}/permissions/{permissionId}": {
      "delete": {
        "description": "Removes the permission with the given permissionId for the data source with the given id.\n\nYou need to have a permission with action `datasources.permissions:delete` and scopes `datasources:*`, `datasources:id:*`, `datasources:id:1` (single data source).",
        "operationId": "deletePermissions",
        "parameters": [
          {
            "in": "path",
            "name": "datasourceId",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "permissionId",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          }
        },
        "summary": "Remove permission for a data source.",
        "tags": [
          "datasource_permissions",
          "enterprise"
        ]
      }
    },
    "/datasources/{id}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:id:*` and `datasources:id:1` (single data source).\n\nPlease refer to [updated API](#/datasources/deleteDataSourceByUID) instead",
        "operationId": "deleteDataSourceByID",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete an existing data source by id.",
        "tags": [
          "datasources"
        ]
      },
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:id:*` and `datasources:id:1` (single data source).\n\nPlease refer to [updated API](#/datasources/getDataSourceByUID) instead",
        "operationId": "getDataSourceByID",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDataSourceResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a single data source by Id.",
        "tags": [
          "datasources"
        ]
      },
      "put": {
        "description": "Similar to creating a data source, `password` and `basicAuthPassword` should be defined under\nsecureJsonData in order to be stored securely as an encrypted blob in the database. Then, the\nencrypted fields are listed under secureJsonFields section in the response.\n\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:write` and scopes: `datasources:*`, `datasources:id:*` and `datasources:id:1` (single data source).\n\nPlease refer to [updated API](#/datasources/updateDataSourceByUID) instead",
        "operationId": "updateDataSourceByID",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateDataSourceCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrUpdateDatasourceResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update an existing data source by its sequential ID.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/{id}/health": {
      "get": {
        "description": "Please refer to [updated API](#/datasources/checkDatasourceHealthWithUID) instead",
        "operationId": "checkDatasourceHealthByID",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Sends a health check request to the plugin datasource identified by the ID.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/datasources/{id}/resources/{datasource_proxy_route}": {
      "get": {
        "description": "Please refer to [updated API](#/datasources/callDatasourceResourceWithUID) instead",
        "operationId": "callDatasourceResourceByID",
        "parameters": [
          {
            "in": "path",
            "name": "datasource_proxy_route",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Fetch data source resources by Id.",
        "tags": [
          "datasources"
        ]
      }
    },
    "/ds/query": {
      "post": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `datasources:query`.",
        "operationId": "queryMetricsWithExpressions",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetricRequest"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/queryMetricsWithExpressionsRespons"
          },
          "207": {
            "$ref": "#/components/responses/queryMetricsWithExpressionsRespons"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "DataSource query metrics with expressions.",
        "tags": [
          "ds"
        ]
      }
    },
    "/folders": {
      "get": {
        "description": "Returns all folders that the authenticated user has permission to view.",
        "operationId": "getFolders",
        "parameters": [
          {
            "description": "Limit the maximum number of folders to return",
            "in": "query",
            "name": "limit",
            "schema": {
              "default": 1000,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Page index for starting fetching folders",
            "in": "query",
            "name": "page",
            "schema": {
              "default": 1,
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getFoldersResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all folders.",
        "tags": [
          "folders"
        ]
      },
      "post": {
        "operationId": "createFolder",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateFolderCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/folderResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create folder.",
        "tags": [
          "folders"
        ]
      }
    },
    "/folders/id/{folder_id}": {
      "get": {
        "description": "Returns the folder identified by id.",
        "operationId": "getFolderByID",
        "parameters": [
          {
            "in": "path",
            "name": "folder_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/folderResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get folder by id.",
        "tags": [
          "folders"
        ]
      }
    },
    "/folders/{folder_uid}": {
      "delete": {
        "description": "Deletes an existing folder identified by UID along with all dashboards (and their alerts) stored in the folder. This operation cannot be reverted.",
        "operationId": "deleteFolder",
        "parameters": [
          {
            "in": "path",
            "name": "folder_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "If `true` any Grafana 8 Alerts under this folder will be deleted.\nSet to `false` so that the request will fail if the folder contains any Grafana 8 Alerts.",
            "in": "query",
            "name": "forceDeleteRules",
            "schema": {
              "default": false,
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/deleteFolderResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete folder.",
        "tags": [
          "folders"
        ]
      },
      "get": {
        "operationId": "getFolderByUID",
        "parameters": [
          {
            "in": "path",
            "name": "folder_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/folderResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get folder by uid.",
        "tags": [
          "folders"
        ]
      },
      "put": {
        "operationId": "updateFolder",
        "parameters": [
          {
            "in": "path",
            "name": "folder_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateFolderCommand"
              }
            }
          },
          "description": "To change the unique identifier (uid), provide another one.\nTo overwrite an existing folder with newer version, set `overwrite` to `true`.\nProvide the current version to safelly update the folder: if the provided version differs from the stored one the request will fail, unless `overwrite` is `true`.",
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/folderResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update folder.",
        "tags": [
          "folders"
        ]
      }
    },
    "/folders/{folder_uid}/permissions": {
      "get": {
        "operationId": "getFolderPermissionList",
        "parameters": [
          {
            "in": "path",
            "name": "folder_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getFolderPermissionListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Gets all existing permissions for the folder with the given `uid`.",
        "tags": [
          "folder_permissions"
        ]
      },
      "post": {
        "operationId": "updateFolderPermissions",
        "parameters": [
          {
            "in": "path",
            "name": "folder_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateDashboardACLCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Updates permissions for a folder. This operation will remove existing permissions if they’re not included in the request.",
        "tags": [
          "folder_permissions"
        ]
      }
    },
    "/library-elements": {
      "get": {
        "description": "Returns a list of all library elements the authenticated user has permission to view.\nUse the `perPage` query parameter to control the maximum number of library elements returned; the default limit is `100`.\nYou can also use the `page` query parameter to fetch library elements from any page other than the first one.",
        "operationId": "getLibraryElements",
        "parameters": [
          {
            "description": "Part of the name or description searched for.",
            "in": "query",
            "name": "searchString",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Kind of element to search for.",
            "in": "query",
            "name": "kind",
            "schema": {
              "enum": [
                1,
                2
              ],
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Sort order of elements.",
            "in": "query",
            "name": "sortDirection",
            "schema": {
              "enum": [
                "alpha-asc",
                "alpha-desc"
              ],
              "type": "string"
            }
          },
          {
            "description": "A comma separated list of types to filter the elements by",
            "in": "query",
            "name": "typeFilter",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Element UID to exclude from search results.",
            "in": "query",
            "name": "excludeUid",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "A comma separated list of folder ID(s) to filter the elements by.",
            "in": "query",
            "name": "folderFilter",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "The number of results per page.",
            "in": "query",
            "name": "perPage",
            "schema": {
              "default": 100,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "The page for a set of records, given that only perPage records are returned at a time. Numbering starts at 1.",
            "in": "query",
            "name": "page",
            "schema": {
              "default": 1,
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all library elements.",
        "tags": [
          "library_elements"
        ]
      },
      "post": {
        "description": "Creates a new library element.",
        "operationId": "createLibraryElement",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateLibraryElementCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create library element.",
        "tags": [
          "library_elements"
        ]
      }
    },
    "/library-elements/name/{library_element_name}": {
      "get": {
        "description": "Returns a library element with the given name.",
        "operationId": "getLibraryElementByName",
        "parameters": [
          {
            "in": "path",
            "name": "library_element_name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get library element by name.",
        "tags": [
          "library_elements"
        ]
      }
    },
    "/library-elements/{library_element_uid}": {
      "delete": {
        "description": "Deletes an existing library element as specified by the UID. This operation cannot be reverted.\nYou cannot delete a library element that is connected. This operation cannot be reverted.",
        "operationId": "deleteLibraryElementByUID",
        "parameters": [
          {
            "in": "path",
            "name": "library_element_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete library element.",
        "tags": [
          "library_elements"
        ]
      },
      "get": {
        "description": "Returns a library element with the given UID.",
        "operationId": "getLibraryElementByUID",
        "parameters": [
          {
            "in": "path",
            "name": "library_element_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get library element by UID.",
        "tags": [
          "library_elements"
        ]
      },
      "patch": {
        "description": "Updates an existing library element identified by uid.",
        "operationId": "updateLibraryElement",
        "parameters": [
          {
            "in": "path",
            "name": "library_element_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PatchLibraryElementCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "412": {
            "$ref": "#/components/responses/preconditionFailedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update library element.",
        "tags": [
          "library_elements"
        ]
      }
    },
    "/library-elements/{library_element_uid}/connections/": {
      "get": {
        "description": "Returns a list of connections for a library element based on the UID specified.",
        "operationId": "getLibraryElementConnections",
        "parameters": [
          {
            "in": "path",
            "name": "library_element_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLibraryElementConnectionsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get library element connections.",
        "tags": [
          "library_elements"
        ]
      }
    },
    "/licensing/check": {
      "get": {
        "operationId": "getStatus",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getStatusResponse"
          }
        },
        "summary": "Check license availability.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/licensing/custom-permissions": {
      "get": {
        "description": "You need to have a permission with action `licensing.reports:read`.",
        "operationId": "getCustomPermissionsReport",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCustomPermissionsReportResponse"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get custom permissions report.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/licensing/custom-permissions-csv": {
      "get": {
        "description": "You need to have a permission with action `licensing.reports:read`.",
        "operationId": "getCustomPermissionsCSV",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCustomPermissionsReportResponse"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get custom permissions report in CSV format.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/licensing/refresh-stats": {
      "get": {
        "description": "You need to have a permission with action `licensing:read`.",
        "operationId": "refreshLicenseStats",
        "responses": {
          "200": {
            "$ref": "#/components/responses/refreshLicenseStatsResponse"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Refresh license stats.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/licensing/token": {
      "delete": {
        "description": "Removes the license stored in the Grafana database. Available in Grafana Enterprise v7.4+.\n\nYou need to have a permission with action `licensing:delete`.",
        "operationId": "deleteLicenseToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteTokenCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "202": {
            "$ref": "#/components/responses/acceptedResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove license from database.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      },
      "get": {
        "description": "You need to have a permission with action `licensing:read`.",
        "operationId": "getLicenseToken",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLicenseTokenResponse"
          }
        },
        "summary": "Get license token.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      },
      "post": {
        "description": "You need to have a permission with action `licensing:update`.",
        "operationId": "postLicenseToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteTokenCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getLicenseTokenResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          }
        },
        "summary": "Create license token.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/licensing/token/renew": {
      "post": {
        "description": "Manually ask license issuer for a new token. Available in Grafana Enterprise v7.4+.\n\nYou need to have a permission with action `licensing:update`.",
        "operationId": "postRenewLicenseToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/postRenewLicenseTokenResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          }
        },
        "summary": "Manually force license refresh.",
        "tags": [
          "licensing",
          "enterprise"
        ]
      }
    },
    "/logout/saml": {
      "get": {
        "operationId": "getSAMLLogout",
        "responses": {
          "302": {
            "description": "(empty)"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "GetLogout initiates single logout process.",
        "tags": [
          "saml",
          "enterprise"
        ]
      }
    },
    "/org": {
      "get": {
        "operationId": "getCurrentOrg",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getCurrentOrgResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get current Organization.",
        "tags": [
          "org"
        ]
      },
      "put": {
        "operationId": "updateCurrentOrg",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update current Organization.",
        "tags": [
          "org"
        ]
      }
    },
    "/org/address": {
      "put": {
        "operationId": "updateCurrentOrgAddress",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgAddressForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update current Organization's address.",
        "tags": [
          "org"
        ]
      }
    },
    "/org/invites": {
      "get": {
        "operationId": "getPendingOrgInvites",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPendingOrgInvitesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get pending invites.",
        "tags": [
          "org_invites"
        ]
      },
      "post": {
        "operationId": "addOrgInvite",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddInviteForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "412": {
            "$ref": "#/components/responses/SMTPNotEnabledError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add invite.",
        "tags": [
          "org_invites"
        ]
      }
    },
    "/org/invites/{invitation_code}/revoke": {
      "delete": {
        "operationId": "revokeInvite",
        "parameters": [
          {
            "in": "path",
            "name": "invitation_code",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Revoke invite.",
        "tags": [
          "org_invites"
        ]
      }
    },
    "/org/preferences": {
      "get": {
        "operationId": "getOrgPreferences",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPreferencesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Current Org Prefs.",
        "tags": [
          "org_preferences"
        ]
      },
      "patch": {
        "operationId": "patchOrgPreferences",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PatchPrefsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Patch Current Org Prefs.",
        "tags": [
          "org_preferences"
        ]
      },
      "put": {
        "operationId": "updateOrgPreferences",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdatePrefsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Current Org Prefs.",
        "tags": [
          "org_preferences"
        ]
      }
    },
    "/org/users": {
      "get": {
        "description": "Returns all org users within the current organization. Accessible to users with org admin role.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:read` with scope `users:*`.",
        "operationId": "getOrgUsersForCurrentOrg",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getOrgUsersForCurrentOrgResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all users within the current organization.",
        "tags": [
          "org"
        ]
      },
      "post": {
        "description": "Adds a global user to the current organization.\n\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:add` with scope `users:*`.",
        "operationId": "addOrgUserToCurrentOrg",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddOrgUserCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add a new user to the current organization.",
        "tags": [
          "org"
        ]
      }
    },
    "/org/users/lookup": {
      "get": {
        "description": "Returns all org users within the current organization, but with less detailed information.\nAccessible to users with org admin role, admin in any folder or admin of any team.\nMainly used by Grafana UI for providing list of users when adding team members and when editing folder/dashboard permissions.",
        "operationId": "getOrgUsersForCurrentOrgLookup",
        "parameters": [
          {
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getOrgUsersForCurrentOrgLookupResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get all users within the current organization (lookup)",
        "tags": [
          "org"
        ]
      }
    },
    "/org/users/{user_id}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:remove` with scope `users:*`.",
        "operationId": "removeOrgUserForCurrentOrg",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete user in current organization.",
        "tags": [
          "org"
        ]
      },
      "patch": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users.role:update` with scope `users:*`.",
        "operationId": "updateOrgUserForCurrentOrg",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgUserCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Updates the given user.",
        "tags": [
          "org"
        ]
      }
    },
    "/orgs": {
      "get": {
        "operationId": "searchOrgs",
        "parameters": [
          {
            "in": "query",
            "name": "page",
            "schema": {
              "default": 1,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Number of items per page\nThe totalCount field in the response can be used for pagination list E.g. if totalCount is equal to 100 teams and the perpage parameter is set to 10 then there are 10 pages of teams.",
            "in": "query",
            "name": "perpage",
            "schema": {
              "default": 1000,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "query",
            "name": "name",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "If set it will return results where the query value is contained in the name field. Query values with spaces need to be URL encoded.",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchOrgsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Search all Organizations.",
        "tags": [
          "orgs"
        ]
      },
      "post": {
        "description": "Only works if [users.allow_org_create](https://grafana.com/docs/grafana/latest/administration/configuration/#allow_org_create) is set.",
        "operationId": "createOrg",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrgCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createOrgResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create Organization.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/name/{org_name}": {
      "get": {
        "operationId": "getOrgByName",
        "parameters": [
          {
            "in": "path",
            "name": "org_name",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getOrgByNameResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Get Organization by ID.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}": {
      "delete": {
        "operationId": "deleteOrgByID",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Delete Organization.",
        "tags": [
          "orgs"
        ]
      },
      "get": {
        "operationId": "getOrgByID",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getOrgByIDResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Get Organization by ID.",
        "tags": [
          "orgs"
        ]
      },
      "put": {
        "operationId": "updateOrg",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Update Organization.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}/address": {
      "put": {
        "operationId": "updateOrgAddress",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgAddressForm"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Organization's address.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}/quotas": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:read` and scope `org:id:1` (orgIDScope).",
        "operationId": "getOrgQuota",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQuotaResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Fetch Organization quota.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}/quotas/{quota_target}": {
      "put": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:write` and scope `org:id:1` (orgIDScope).",
        "operationId": "updateOrgQuota",
        "parameters": [
          {
            "in": "path",
            "name": "quota_target",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgQuotaCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Update user quota.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}/users": {
      "get": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:read` with scope `users:*`.",
        "operationId": "getOrgUsers",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getOrgUsersResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Get Users in Organization.",
        "tags": [
          "orgs"
        ]
      },
      "post": {
        "description": "Adds a global user to the current organization.\n\nIf you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:add` with scope `users:*`.",
        "operationId": "addOrgUser",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddOrgUserCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add a new user to the current organization.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/orgs/{org_id}/users/{user_id}": {
      "delete": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users:remove` with scope `users:*`.",
        "operationId": "removeOrgUser",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete user in current organization.",
        "tags": [
          "orgs"
        ]
      },
      "patch": {
        "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled\nyou need to have a permission with action: `org.users.role:update` with scope `users:*`.",
        "operationId": "updateOrgUser",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateOrgUserCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Users in Organization.",
        "tags": [
          "orgs"
        ]
      }
    },
    "/playlists": {
      "get": {
        "operationId": "searchPlaylists",
        "parameters": [
          {
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "in:limit",
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchPlaylistsResponse"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get playlists.",
        "tags": [
          "playlists"
        ]
      },
      "post": {
        "operationId": "createPlaylist",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreatePlaylistCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createPlaylistResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create playlist.",
        "tags": [
          "playlists"
        ]
      }
    },
    "/playlists/{uid}": {
      "delete": {
        "operationId": "deletePlaylist",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete playlist.",
        "tags": [
          "playlists"
        ]
      },
      "get": {
        "operationId": "getPlaylist",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPlaylistResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get playlist.",
        "tags": [
          "playlists"
        ]
      },
      "put": {
        "operationId": "updatePlaylist",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdatePlaylistCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/updatePlaylistResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update playlist.",
        "tags": [
          "playlists"
        ]
      }
    },
    "/playlists/{uid}/dashboards": {
      "get": {
        "operationId": "getPlaylistDashboards",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPlaylistDashboardsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get playlist dashboards.",
        "tags": [
          "playlists"
        ]
      }
    },
    "/playlists/{uid}/items": {
      "get": {
        "operationId": "getPlaylistItems",
        "parameters": [
          {
            "in": "path",
            "name": "uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPlaylistItemsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get playlist items.",
        "tags": [
          "playlists"
        ]
      }
    },
    "/query-history": {
      "get": {
        "description": "Returns a list of queries in the query history that matches the search criteria.\nQuery history search supports pagination. Use the `limit` parameter to control the maximum number of queries returned; the default limit is 100.\nYou can also use the `page` query parameter to fetch queries from any page other than the first one.",
        "operationId": "searchQueries",
        "parameters": [
          {
            "description": "List of data source UIDs to search for",
            "in": "query",
            "name": "datasourceUid",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Text inside query or comments that is searched for",
            "in": "query",
            "name": "searchString",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Flag indicating if only starred queries should be returned",
            "in": "query",
            "name": "onlyStarred",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Sort method",
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "time-desc",
              "enum": [
                "time-desc",
                "time-asc"
              ],
              "type": "string"
            }
          },
          {
            "description": "Use this parameter to access hits beyond limit. Numbering starts at 1. limit param acts as page size.",
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Limit the number of returned results",
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "From range for the query history search",
            "in": "query",
            "name": "from",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "To range for the query history search",
            "in": "query",
            "name": "to",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistorySearchResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Query history search.",
        "tags": [
          "query_history"
        ]
      },
      "post": {
        "description": "Adds new query to query history.",
        "operationId": "createQuery",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateQueryInQueryHistoryCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add query to query history.",
        "tags": [
          "query_history"
        ]
      }
    },
    "/query-history/migrate": {
      "post": {
        "description": "Adds multiple queries to query history.",
        "operationId": "migrateQueries",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MigrateQueriesToQueryHistoryCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryMigrationResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Migrate queries to query history.",
        "tags": [
          "query_history"
        ]
      }
    },
    "/query-history/star/{query_history_uid}": {
      "delete": {
        "description": "Removes star from query in query history as specified by the UID.",
        "operationId": "unstarQuery",
        "parameters": [
          {
            "in": "path",
            "name": "query_history_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove star to query in query history.",
        "tags": [
          "query_history"
        ]
      },
      "post": {
        "description": "Adds star to query in query history as specified by the UID.",
        "operationId": "starQuery",
        "parameters": [
          {
            "in": "path",
            "name": "query_history_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add star to query in query history.",
        "tags": [
          "query_history"
        ]
      }
    },
    "/query-history/{query_history_uid}": {
      "delete": {
        "description": "Deletes an existing query in query history as specified by the UID. This operation cannot be reverted.",
        "operationId": "deleteQuery",
        "parameters": [
          {
            "in": "path",
            "name": "query_history_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryDeleteQueryResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete query in query history.",
        "tags": [
          "query_history"
        ]
      },
      "patch": {
        "description": "Updates comment for query in query history as specified by the UID.",
        "operationId": "patchQueryComment",
        "parameters": [
          {
            "in": "path",
            "name": "query_history_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PatchQueryCommentInQueryHistoryCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQueryHistoryResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update comment for query in query history.",
        "tags": [
          "query_history"
        ]
      }
    },
    "/recording-rules": {
      "get": {
        "operationId": "listRecordingRules",
        "responses": {
          "200": {
            "$ref": "#/components/responses/listRecordingRulesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Lists all rules in the database: active or deleted.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      },
      "post": {
        "operationId": "createRecordingRule",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RecordingRuleJSON"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/recordingRuleResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create a recording rule that is then registered and started.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      },
      "put": {
        "operationId": "updateRecordingRule",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RecordingRuleJSON"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/recordingRuleResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update the active status of a rule.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      }
    },
    "/recording-rules/test": {
      "post": {
        "operationId": "testCreateRecordingRule",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RecordingRuleJSON"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Test a recording rule.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      }
    },
    "/recording-rules/writer": {
      "delete": {
        "operationId": "deleteRecordingRuleWriteTarget",
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete the remote write target.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      },
      "get": {
        "operationId": "getRecordingRuleWriteTarget",
        "responses": {
          "200": {
            "$ref": "#/components/responses/recordingRuleWriteTargetResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Return the prometheus remote write target.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      },
      "post": {
        "description": "It returns a 422 if there is not an existing prometheus data source configured.",
        "operationId": "createRecordingRuleWriteTarget",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrometheusRemoteWriteTargetJSON"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/recordingRuleWriteTargetResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create a remote write target.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      }
    },
    "/recording-rules/{recordingRuleID}": {
      "delete": {
        "operationId": "deleteRecordingRule",
        "parameters": [
          {
            "in": "path",
            "name": "recordingRuleID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete removes the rule from the registry and stops it.",
        "tags": [
          "recording_rules",
          "enterprise"
        ]
      }
    },
    "/reports": {
      "get": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports:read` with scope `reports:*`.",
        "operationId": "getReports",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getReportsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "List reports.",
        "tags": [
          "reports",
          "enterprise"
        ]
      },
      "post": {
        "description": "Available to org admins only and with a valid license.\n\nYou need to have a permission with action `reports.admin:create`.",
        "operationId": "createReport",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrUpdateConfigCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createReportResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create a report.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/email": {
      "post": {
        "description": "Generate and send a report. This API waits for the report to be generated before returning. We recommend that you set the client’s timeout to at least 60 seconds. Available to org admins only and with a valid license.\n\nOnly available in Grafana Enterprise v7.0+.\nThis API endpoint is experimental and may be deprecated in a future release. On deprecation, a migration strategy will be provided and the endpoint will remain functional until the next major release of Grafana.\n\nYou need to have a permission with action `reports:send`.",
        "operationId": "sendReport",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportEmailDTO"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Send a report.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/render/pdf/{dashboardID}": {
      "get": {
        "description": "Please refer to [reports enterprise](#/reports/renderReportPDFs) instead. This will be removed in Grafana 10.",
        "operationId": "renderReportPDF",
        "parameters": [
          {
            "in": "path",
            "name": "DashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "dashboardID",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "query",
            "name": "title",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "variables",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "from",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "to",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "orientation",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "layout",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/contentResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Render report for dashboard.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/render/pdfs": {
      "get": {
        "description": "Available to all users and with a valid license.",
        "operationId": "renderReportPDFs",
        "parameters": [
          {
            "in": "query",
            "name": "dashboardID",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "orientation",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "layout",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/contentResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Render report for multiple dashboards.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/settings": {
      "get": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports.settings:read`x.",
        "operationId": "getReportSettings",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getReportSettingsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get settings.",
        "tags": [
          "reports",
          "enterprise"
        ]
      },
      "post": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports.settings:write`xx.",
        "operationId": "saveReportSettings",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SettingsDTO"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Save settings.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/test-email": {
      "post": {
        "description": "Available to org admins only and with a valid license.\n\nYou need to have a permission with action `reports:send`.",
        "operationId": "sendTestEmail",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrUpdateConfigCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Send test report via email.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/reports/{id}": {
      "delete": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports.delete` with scope `reports:id:\u003creport ID\u003e`.",
        "operationId": "deleteReport",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete a report.",
        "tags": [
          "reports",
          "enterprise"
        ]
      },
      "get": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports:read` with scope `reports:id:\u003creport ID\u003e`.",
        "operationId": "getReport",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getReportResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get a report.",
        "tags": [
          "reports",
          "enterprise"
        ]
      },
      "put": {
        "description": "Available to org admins only and with a valid or expired license.\n\nYou need to have a permission with action `reports.admin:write` with scope `reports:id:\u003creport ID\u003e`.",
        "operationId": "updateReport",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateOrUpdateConfigCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update a report.",
        "tags": [
          "reports",
          "enterprise"
        ]
      }
    },
    "/saml/acs": {
      "post": {
        "operationId": "postACS",
        "parameters": [
          {
            "in": "query",
            "name": "RelayState",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "302": {
            "description": "(empty)"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "It performs assertion Consumer Service (ACS).",
        "tags": [
          "saml",
          "enterprise"
        ]
      }
    },
    "/saml/metadata": {
      "get": {
        "operationId": "getMetadata",
        "responses": {
          "200": {
            "$ref": "#/components/responses/contentResponse"
          }
        },
        "summary": "It exposes the SP (Grafana's) metadata for the IdP's consumption.",
        "tags": [
          "saml",
          "enterprise"
        ]
      }
    },
    "/saml/slo": {
      "get": {
        "description": "There might be two possible requests:\n1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request.\n2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana,\nor in case of IdP-initiated logout.",
        "operationId": "getSLO",
        "responses": {
          "302": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "It performs Single Logout (SLO) callback.",
        "tags": [
          "saml",
          "enterprise"
        ]
      },
      "post": {
        "description": "There might be two possible requests:\n1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request.\n2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana,\nor in case of IdP-initiated logout.",
        "operationId": "postSLO",
        "parameters": [
          {
            "in": "query",
            "name": "SAMLRequest",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "SAMLResponse",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "302": {
            "description": "(empty)"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "It performs Single Logout (SLO) callback.",
        "tags": [
          "saml",
          "enterprise"
        ]
      }
    },
    "/search": {
      "get": {
        "operationId": "search",
        "parameters": [
          {
            "description": "Search Query",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "List of tags to search for",
            "in": "query",
            "name": "tag",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Type to search for, dash-folder or dash-db",
            "in": "query",
            "name": "type",
            "schema": {
              "enum": [
                "dash-folder",
                "dash-db"
              ],
              "type": "string"
            }
          },
          {
            "description": "List of dashboard id’s to search for",
            "in": "query",
            "name": "dashboardIds",
            "schema": {
              "items": {
                "format": "int64",
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "List of dashboard uid’s to search for",
            "in": "query",
            "name": "dashboardUIDs",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "List of folder id’s to search in for dashboards",
            "in": "query",
            "name": "folderIds",
            "schema": {
              "items": {
                "format": "int64",
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Flag indicating if only starred Dashboards should be returned",
            "in": "query",
            "name": "starred",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Limit the number of returned results (max 5000)",
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Use this parameter to access hits beyond limit. Numbering starts at 1. limit param acts as page size. Only available in Grafana v6.2+.",
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Set to `Edit` to return dashboards/folders that the user can edit",
            "in": "query",
            "name": "permission",
            "schema": {
              "default": "View",
              "enum": [
                "Edit",
                "View"
              ],
              "type": "string"
            }
          },
          {
            "description": "Sort method; for listing all the possible sort methods use the search sorting endpoint.",
            "in": "query",
            "name": "sort",
            "schema": {
              "default": "alpha-asc",
              "enum": [
                "alpha-asc",
                "alpha-desc"
              ],
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "422": {
            "$ref": "#/components/responses/unprocessableEntityError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "tags": [
          "search"
        ]
      }
    },
    "/search/sorting": {
      "get": {
        "operationId": "listSortOptions",
        "responses": {
          "200": {
            "$ref": "#/components/responses/listSortOptionsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          }
        },
        "summary": "List search sorting options.",
        "tags": [
          "search"
        ]
      }
    },
    "/serviceaccounts": {
      "post": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:write` scope: `serviceaccounts:*`\n\nRequires basic authentication and that the authenticated user is a Grafana Admin.",
        "operationId": "createServiceAccount",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateServiceAccountForm"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "201": {
            "$ref": "#/components/responses/createServiceAccountResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Create service account",
        "tags": [
          "service_accounts"
        ]
      }
    },
    "/serviceaccounts/search": {
      "get": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:read` scope: `serviceaccounts:*`",
        "operationId": "searchOrgServiceAccountsWithPaging",
        "parameters": [
          {
            "in": "query",
            "name": "Disabled",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "query",
            "name": "expiredTokens",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "It will return results where the query value is contained in one of the name.\nQuery values with spaces need to be URL encoded.",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "The default value is 1000.",
            "in": "query",
            "name": "perpage",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "The default value is 1.",
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchOrgServiceAccountsWithPagingResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Search service accounts with paging",
        "tags": [
          "service_accounts"
        ]
      }
    },
    "/serviceaccounts/{serviceAccountId}": {
      "delete": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:delete` scope: `serviceaccounts:id:1` (single service account)",
        "operationId": "deleteServiceAccount",
        "parameters": [
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete service account",
        "tags": [
          "service_accounts"
        ]
      },
      "get": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:read` scope: `serviceaccounts:id:1` (single service account)",
        "operationId": "retrieveServiceAccount",
        "parameters": [
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/retrieveServiceAccountResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get single serviceaccount by Id",
        "tags": [
          "service_accounts"
        ]
      },
      "patch": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)",
        "operationId": "updateServiceAccount",
        "parameters": [
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateServiceAccountForm"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/updateServiceAccountResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update service account",
        "tags": [
          "service_accounts"
        ]
      }
    },
    "/serviceaccounts/{serviceAccountId}/tokens": {
      "get": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:read` scope: `global:serviceaccounts:id:1` (single service account)\n\nRequires basic authentication and that the authenticated user is a Grafana Admin.",
        "operationId": "listTokens",
        "parameters": [
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/listTokensResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get service account tokens",
        "tags": [
          "service_accounts"
        ]
      },
      "post": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)",
        "operationId": "createToken",
        "parameters": [
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddServiceAccountTokenCommand"
              }
            }
          },
          "x-originalParamName": "Body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createTokenResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "CreateNewToken adds a token to a service account",
        "tags": [
          "service_accounts"
        ]
      }
    },
    "/serviceaccounts/{serviceAccountId}/tokens/{tokenId}": {
      "delete": {
        "description": "Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation):\naction: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)\n\nRequires basic authentication and that the authenticated user is a Grafana Admin.",
        "operationId": "deleteToken",
        "parameters": [
          {
            "in": "path",
            "name": "tokenId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "path",
            "name": "serviceAccountId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "DeleteToken deletes service account tokens",
        "tags": [
          "service_accounts"
        ]
      }
    },
    "/snapshot/shared-options": {
      "get": {
        "operationId": "getSharingOptions",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getSharingOptionsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          }
        },
        "summary": "Get snapshot sharing settings.",
        "tags": [
          "snapshots"
        ]
      }
    },
    "/snapshots": {
      "post": {
        "description": "Snapshot public mode should be enabled or authentication is required.",
        "operationId": "createDashboardSnapshot",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateDashboardSnapshotCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createDashboardSnapshotResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "When creating a snapshot using the API, you have to provide the full dashboard payload including the snapshot data. This endpoint is designed for the Grafana UI.",
        "tags": [
          "snapshots"
        ]
      }
    },
    "/snapshots-delete/{deleteKey}": {
      "get": {
        "description": "Snapshot public mode should be enabled or authentication is required.",
        "operationId": "deleteDashboardSnapshotByDeleteKey",
        "parameters": [
          {
            "in": "path",
            "name": "deleteKey",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete Snapshot by deleteKey.",
        "tags": [
          "snapshots"
        ]
      }
    },
    "/snapshots/{key}": {
      "delete": {
        "operationId": "deleteDashboardSnapshot",
        "parameters": [
          {
            "in": "path",
            "name": "key",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete Snapshot by Key.",
        "tags": [
          "snapshots"
        ]
      },
      "get": {
        "operationId": "getDashboardSnapshot",
        "parameters": [
          {
            "in": "path",
            "name": "key",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getDashboardSnapshotResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Snapshot by Key.",
        "tags": [
          "snapshots"
        ]
      }
    },
    "/teams": {
      "post": {
        "operationId": "createTeam",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTeamCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/createTeamResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add Team.",
        "tags": [
          "teams"
        ]
      }
    },
    "/teams/search": {
      "get": {
        "operationId": "searchTeams",
        "parameters": [
          {
            "in": "query",
            "name": "page",
            "schema": {
              "default": 1,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Number of items per page\nThe totalCount field in the response can be used for pagination list E.g. if totalCount is equal to 100 teams and the perpage parameter is set to 10 then there are 10 pages of teams.",
            "in": "query",
            "name": "perpage",
            "schema": {
              "default": 1000,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "in": "query",
            "name": "name",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "If set it will return results where the query value is contained in the name field. Query values with spaces need to be URL encoded.",
            "in": "query",
            "name": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchTeamsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Team Search With Paging.",
        "tags": [
          "teams"
        ]
      }
    },
    "/teams/{teamId}/groups": {
      "get": {
        "operationId": "getTeamGroupsApi",
        "parameters": [
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getTeamGroupsApiResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get External Groups.",
        "tags": [
          "sync_team_groups",
          "enterprise"
        ]
      },
      "post": {
        "operationId": "addTeamGroupApi",
        "parameters": [
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TeamGroupMapping"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add External Group.",
        "tags": [
          "sync_team_groups",
          "enterprise"
        ]
      }
    },
    "/teams/{teamId}/groups/{groupId}": {
      "delete": {
        "operationId": "removeTeamGroupApi",
        "parameters": [
          {
            "in": "path",
            "name": "groupId",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "teamId",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove External Group.",
        "tags": [
          "sync_team_groups",
          "enterprise"
        ]
      }
    },
    "/teams/{team_id}": {
      "delete": {
        "operationId": "deleteTeamByID",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Delete Team By ID.",
        "tags": [
          "teams"
        ]
      },
      "get": {
        "operationId": "getTeamByID",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getTeamByIDResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Team By ID.",
        "tags": [
          "teams"
        ]
      },
      "put": {
        "operationId": "updateTeam",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTeamCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "409": {
            "$ref": "#/components/responses/conflictError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Team.",
        "tags": [
          "teams"
        ]
      }
    },
    "/teams/{team_id}/members": {
      "get": {
        "operationId": "getTeamMembers",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getTeamMembersResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Team Members.",
        "tags": [
          "teams"
        ]
      },
      "post": {
        "operationId": "addTeamMember",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddTeamMemberCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Add Team Member.",
        "tags": [
          "teams"
        ]
      }
    },
    "/teams/{team_id}/members/{user_id}": {
      "delete": {
        "operationId": "removeTeamMember",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Remove Member From Team.",
        "tags": [
          "teams"
        ]
      },
      "put": {
        "operationId": "updateTeamMember",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTeamMemberCommand"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Team Member.",
        "tags": [
          "teams"
        ]
      }
    },
    "/teams/{team_id}/preferences": {
      "get": {
        "operationId": "getTeamPreferences",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPreferencesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get Team Preferences.",
        "tags": [
          "teams"
        ]
      },
      "put": {
        "operationId": "updateTeamPreferences",
        "parameters": [
          {
            "in": "path",
            "name": "team_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdatePrefsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update Team Preferences.",
        "tags": [
          "teams"
        ]
      }
    },
    "/user": {
      "get": {
        "description": "Get (current authenticated user)",
        "operationId": "getSignedInUser",
        "responses": {
          "200": {
            "$ref": "#/components/responses/userResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "tags": [
          "signed_in_user"
        ]
      },
      "put": {
        "operationId": "updateSignedInUser",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateUserCommand"
              }
            }
          },
          "description": "To change the email, name, login, theme, provide another one.",
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update signed in User.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/auth-tokens": {
      "get": {
        "description": "Return a list of all auth tokens (devices) that the actual user currently have logged in from.",
        "operationId": "getUserAuthTokens",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getUserAuthTokensResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Auth tokens of the actual User.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/helpflags/clear": {
      "get": {
        "operationId": "clearHelpFlags",
        "responses": {
          "200": {
            "$ref": "#/components/responses/helpFlagResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Clear user help flag.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/helpflags/{flag_id}": {
      "put": {
        "operationId": "setHelpFlag",
        "parameters": [
          {
            "in": "path",
            "name": "flag_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/helpFlagResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Set user help flag.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/orgs": {
      "get": {
        "description": "Return a list of all organizations of the current user.",
        "operationId": "getSignedInUserOrgList",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getSignedInUserOrgListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Organizations of the actual User.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/password": {
      "put": {
        "description": "Changes the password for the user.",
        "operationId": "changeUserPassword",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ChangeUserPasswordCommand"
              }
            }
          },
          "description": "To change the email, name, login, theme, provide another one.",
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "security": [
          {
            "basic": []
          }
        ],
        "summary": "Change Password.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/preferences": {
      "get": {
        "operationId": "getUserPreferences",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getPreferencesResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get user preferences.",
        "tags": [
          "user_preferences"
        ]
      },
      "patch": {
        "operationId": "patchUserPreferences",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PatchPrefsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Patch user preferences.",
        "tags": [
          "user_preferences"
        ]
      },
      "put": {
        "description": "Omitting a key (`theme`, `homeDashboardId`, `timezone`) will cause the current value to be replaced with the system default value.",
        "operationId": "updateUserPreferences",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdatePrefsCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update user preferences.",
        "tags": [
          "user_preferences"
        ]
      }
    },
    "/user/quotas": {
      "get": {
        "operationId": "getUserQuotas",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getQuotaResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Fetch user quota.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/revoke-auth-token": {
      "post": {
        "description": "Revokes the given auth token (device) for the actual user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity.",
        "operationId": "revokeUserAuthToken",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RevokeAuthTokenCmd"
              }
            }
          },
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Revoke an auth token of the actual User.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/stars/dashboard/uid/{dashboard_uid}": {
      "delete": {
        "description": "Deletes the starring of the given Dashboard for the actual user.",
        "operationId": "unstarDashboardByUID",
        "parameters": [
          {
            "in": "path",
            "name": "dashboard_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Unstar a dashboard.",
        "tags": [
          "signed_in_user"
        ]
      },
      "post": {
        "description": "Stars the given Dashboard for the actual user.",
        "operationId": "starDashboardByUID",
        "parameters": [
          {
            "in": "path",
            "name": "dashboard_uid",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Star a dashboard.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/stars/dashboard/{dashboard_id}": {
      "delete": {
        "description": "Deletes the starring of the given Dashboard for the actual user.",
        "operationId": "unstarDashboard",
        "parameters": [
          {
            "in": "path",
            "name": "dashboard_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Unstar a dashboard.",
        "tags": [
          "signed_in_user"
        ]
      },
      "post": {
        "description": "Stars the given Dashboard for the actual user.",
        "operationId": "starDashboard",
        "parameters": [
          {
            "in": "path",
            "name": "dashboard_id",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Star a dashboard.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/teams": {
      "get": {
        "description": "Return a list of all teams that the current user is member of.",
        "operationId": "getSignedInUserTeamList",
        "responses": {
          "200": {
            "$ref": "#/components/responses/getSignedInUserTeamListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Teams that the actual User is member of.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/user/using/{org_id}": {
      "post": {
        "description": "Switch user context to the given organization.",
        "operationId": "userSetUsingOrg",
        "parameters": [
          {
            "in": "path",
            "name": "org_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "400": {
            "$ref": "#/components/responses/badRequestError"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Switch user context for signed in user.",
        "tags": [
          "signed_in_user"
        ]
      }
    },
    "/users": {
      "get": {
        "description": "Returns all users that the authenticated user has permission to view, admin permission required.",
        "operationId": "searchUsers",
        "parameters": [
          {
            "description": "Limit the maximum number of users to return per page",
            "in": "query",
            "name": "perpage",
            "schema": {
              "default": 1000,
              "format": "int64",
              "type": "integer"
            }
          },
          {
            "description": "Page index for starting fetching users",
            "in": "query",
            "name": "page",
            "schema": {
              "default": 1,
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchUsersResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get users.",
        "tags": [
          "users"
        ]
      }
    },
    "/users/lookup": {
      "get": {
        "operationId": "getUserByLoginOrEmail",
        "parameters": [
          {
            "description": "loginOrEmail of the user",
            "in": "query",
            "name": "loginOrEmail",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/userResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get user by login or email.",
        "tags": [
          "users"
        ]
      }
    },
    "/users/search": {
      "get": {
        "operationId": "searchUsersWithPaging",
        "responses": {
          "200": {
            "$ref": "#/components/responses/searchUsersResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get users with paging.",
        "tags": [
          "users"
        ]
      }
    },
    "/users/{user_id}": {
      "get": {
        "operationId": "getUserByID",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/userResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get user by id.",
        "tags": [
          "users"
        ]
      },
      "put": {
        "description": "Update the user identified by id.",
        "operationId": "updateUser",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateUserCommand"
              }
            }
          },
          "description": "To change the email, name, login, theme, provide another one.",
          "required": true,
          "x-originalParamName": "body"
        },
        "responses": {
          "200": {
            "$ref": "#/components/responses/okResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Update user.",
        "tags": [
          "users"
        ]
      }
    },
    "/users/{user_id}/orgs": {
      "get": {
        "description": "Get organizations for user identified by id.",
        "operationId": "getUserOrgList",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getUserOrgListResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get organizations for user.",
        "tags": [
          "users"
        ]
      }
    },
    "/users/{user_id}/teams": {
      "get": {
        "description": "Get teams for user identified by id.",
        "operationId": "getUserTeams",
        "parameters": [
          {
            "in": "path",
            "name": "user_id",
            "required": true,
            "schema": {
              "format": "int64",
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "$ref": "#/components/responses/getUserTeamsResponse"
          },
          "401": {
            "$ref": "#/components/responses/unauthorisedError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          },
          "404": {
            "$ref": "#/components/responses/notFoundError"
          },
          "500": {
            "$ref": "#/components/responses/internalServerError"
          }
        },
        "summary": "Get teams for user.",
        "tags": [
          "users"
        ]
      }
    }
  },
  "security": [
    {
      "basic": []
    },
    {
      "api_key": []
    }
  ],
  "servers": [
    {
      "url": "/api"
    }
  ],
  "tags": [
    {
      "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, for some endpoints you would need to have relevant permissions. Refer to specific resources to understand what permissions are required.",
      "name": "datasources"
    },
    {
      "description": "Folders are identified by the identifier (id) and the unique identifier (uid).\nThe identifier (id) of a folder is an auto-incrementing numeric value and is only unique per Grafana install.\nThe unique identifier (uid) of a folder can be used for uniquely identify folders between multiple Grafana installs. It’s automatically generated if not provided when creating a folder. The uid allows having consistent URLs for accessing folders and when syncing folders between multiple Grafana installs. This means that changing the title of a folder will not break any bookmarked links to that folder.\nThe uid can have a maximum length of 40 characters.\n\nThe General folder (id=0) is special and is not part of the Folder API which means that you cannot use this API for retrieving information about the General folder.",
      "name": "folders"
    },
    {
      "description": "Permissions with `folderId=-1` are the default permissions for users with the Viewer and Editor roles. Permissions can be set for a user, a team or a role (Viewer or Editor). Permissions cannot be set for Admins - they always have access to everything.",
      "name": "folder_permissions"
    },
    {
      "description": "The Admin HTTP API does not currently work with an API Token. API Tokens are currently only linked to an organization and an organization role. They cannot be given the permission of server admin, only users can be given that permission. So in order to use these API calls you will have to use Basic Auth and the Grafana user must have the Grafana Admin permission. (The default admin user is called admin and has permission to use this API.)",
      "name": "admin"
    },
    {
      "description": "You can use the Alerting API to get information about legacy dashboard alerts and their states but this API cannot be used to modify the alert. To create new alerts or modify them you need to update the dashboard JSON that contains the alerts.\nThis topic is relevant for the legacy dashboard alerts only.\nYou can find Grafana 8 alerts API specification details [here](https://editor.swagger.io/?url=https://raw.githubusercontent.com/grafana/grafana/main/pkg/services/ngalert/api/tooling/post.json).",
      "name": "legacy_alerts"
    },
    {
      "description": "The identifier (id) of a notification channel is an auto-incrementing numeric value and is only unique per Grafana install.\nThe unique identifier (uid) of a notification channel can be used for uniquely identify a notification channel between multiple Grafana installs. It’s automatically generated if not provided when creating a notification channel. The uid allows having consistent URLs for accessing notification channels and when syncing notification channels between multiple Grafana installations, refer to alert notification channel provisioning.\nThe uid can have a maximum length of 40 characters.",
      "name": "legacy_alerts_notification_channels"
    },
    {
      "description": "Grafana Annotations feature released in Grafana 4.6. Annotations are saved in the Grafana database (sqlite, mysql or postgres). Annotations can be organization annotations that can be shown on any dashboard by configuring an annotation data source - they are filtered by tags. Or they can be tied to a panel on a dashboard and are then only shown on that panel.",
      "name": "annotations"
    },
    {
      "description": "The identifier (ID) of a library element is an auto-incrementing numeric value that is unique per Grafana install.\nThe unique identifier (UID) of a library element uniquely identifies library elements between multiple Grafana installs. It’s automatically generated unless you specify it during library element creation. The UID provides consistent URLs for accessing library elements and when syncing library elements between multiple Grafana installs.\nThe maximum length of a UID is 40 characters.",
      "name": "library_elements"
    },
    {
      "description": "The identifier (ID) of a query in query history is an auto-incrementing numeric value that is unique per Grafana install.\nThe unique identifier (UID) of a query history uniquely identifies queries in query history between multiple Grafana installs. It’s automatically generated. The UID provides consistent URLs for accessing queries in query history.",
      "name": "query_history"
    },
    {
      "description": "The Admin Organizations HTTP API does not currently work with an API Token. API Tokens are currently only linked to an organization and an organization role. They cannot be given the permission of server admin, only users can be given that permission. So in order to use these API calls you will have to use Basic Auth and the Grafana user must have the Grafana Admin permission (The default admin user is called `admin` and has permission to use this API).",
      "name": "orgs"
    },
    {
      "description": "If you are running Grafana Enterprise and have Fine-grained access control enabled, for some endpoints you would need to have relevant permissions. Refer to specific resources to understand what permissions are required.",
      "name": "org"
    },
    {
      "description": "This API can be used to create/update/delete Teams and to add/remove users to Teams. All actions require that the user has the Admin role for the organization.",
      "name": "teams"
    },
    {
      "description": "This API can be used to enable, disable, list, add and remove permissions for a data source.\nPermissions can be set for a user or a team. Permissions cannot be set for Admins - they always have access to everything.\nThis is only available in Grafana Enterprise\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, for some endpoints you would need to have relevant permissions. Refer to specific resources to understand what permissions are required.",
      "name": "datasource_permissions"
    },
    {
      "description": "These are only available in Grafana Enterprise",
      "name": "enterprise"
    },
    {
      "description": "The API can be used to create, update, get and list roles, and create or remove built-in role assignments. To use the API, you would need to enable fine-grained access control.\nThis only available in Grafana Enterprise.\nThe API does not currently work with an API Token. So in order to use these API endpoints you will have to use Basic auth.",
      "name": "access_control"
    },
    {
      "description": "Licensing is only available in Grafana Enterprise. Read more about Grafana Enterprise.\nIf you are running Grafana Enterprise and have Fine-grained access control enabled, for some endpoints you would need to have relevant permissions. Refer to specific resources to understand what permissions are required.",
      "name": "licensing"
    },
    {
      "description": "This API allows you to interact programmatically with the Reporting feature.\nReporting is only available in Grafana Enterprise. Read more about Grafana Enterprise.\nIf you have Fine-grained access Control enabled, for some endpoints you would need to have relevant permissions. Refer to specific resources to understand what permissions are required.",
      "name": "reports"
    },
    {
      "description": "Grafana Alerting Alertmanager-compatible endpoints",
      "name": "alertmanager"
    },
    {
      "description": "Grafana Alerting endpoints for managing rules",
      "name": "ruler"
    },
    {
      "description": "Grafana Alerting testing endpoints",
      "name": "testing"
    },
    {
      "description": "Grafana Alerting Prometheus-compatible endpoints",
      "name": "prometheus"
    },
    {
      "description": "If you are running Grafana Enterprise, for some endpoints you'll need to have specific permissions. Refer to [Role-based access control permissions](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/custom-role-actions-scopes/) for more information.",
      "name": "service_accounts"
    }
  ]
}
back to top