{
	"components": {
		"examples": {},
		"headers": {},
		"parameters": {},
		"requestBodies": {},
		"responses": {},
		"schemas": {
			"ResponseData": {
				"properties": {
					"total_items": {
						"type": "number",
						"format": "double"
					},
					"total_pages": {
						"type": "number",
						"format": "double"
					},
					"current_page": {
						"type": "number",
						"format": "double"
					},
					"page_size": {
						"type": "number",
						"format": "double"
					},
					"prev_url": {
						"type": "string"
					},
					"next_url": {
						"type": "string"
					},
					"status": {
						"type": "number",
						"enum": [
							0,
							1
						],
						"description": "1 = succeed | 0 = failed"
					},
					"data": {},
					"messages": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Error/warning messages"
					}
				},
				"required": [
					"status",
					"data",
					"messages"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IResponsePagination": {
				"properties": {
					"total_items": {
						"type": "number",
						"format": "double"
					},
					"total_pages": {
						"type": "number",
						"format": "double"
					},
					"current_page": {
						"type": "number",
						"format": "double"
					},
					"page_size": {
						"type": "number",
						"format": "double"
					},
					"prev_url": {
						"type": "string"
					},
					"next_url": {
						"type": "string"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IGetQueryParams": {
				"properties": {
					"populate": {
						"type": "string",
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`"
					},
					"select": {
						"type": "string"
					},
					"order": {
						"type": "string",
						"example": "-updatedAt,-createdAt"
					},
					"raw": {
						"type": "boolean",
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"default": "false"
					},
					"page": {
						"type": "number",
						"format": "double"
					},
					"size": {
						"type": "number",
						"format": "double"
					},
					"limit": {
						"type": "number",
						"format": "double"
					},
					"skip": {
						"type": "number",
						"format": "double"
					},
					"id": {
						"type": "string",
						"description": "Find one item by `{ObjectID}`"
					},
					"_id": {
						"type": "string"
					},
					"search": {
						"type": "boolean",
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"default": "true"
					},
					"download": {
						"type": "boolean",
						"description": "If `true`, return the excel binary file to download.",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"AppInputSchema": {
				"properties": {
					"name": {
						"type": "string",
						"description": "`REQUIRES`\n---\nApp's name"
					},
					"project": {
						"type": "string",
						"description": "`REQUIRES`\n---\nProject's ID or slug"
					},
					"gitProvider": {
						"type": "string",
						"description": "`REQUIRES`\n---\nGit provider ID"
					},
					"shouldCreateGitRepo": {
						"type": "boolean",
						"description": "`OPTIONAL`\n---\nShould create new git repository on the selected git provider"
					},
					"force": {
						"type": "boolean",
						"description": "`OPTIONAL`\n---\n### [CAUTION]\nIf `TRUE`, it will delete the existing git repo, then create a new one.",
						"default": "false"
					}
				},
				"required": [
					"name",
					"project",
					"gitProvider"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IPostQueryParams": {
				"properties": {
					"populate": {
						"type": "string",
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`"
					},
					"select": {
						"type": "string"
					},
					"order": {
						"type": "string",
						"example": "-updatedAt,-createdAt"
					},
					"raw": {
						"type": "boolean",
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"Types.ObjectId": {
				"type": "string"
			},
			"GitProviderType": {
				"type": "string",
				"enum": [
					"bitbucket",
					"github"
				]
			},
			"BitbucketOAuthOptions": {
				"properties": {
					"consumer_key": {
						"type": "string",
						"description": "The CONSUMER_KEY for Bitbucket authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"consumer_secret": {
						"type": "string",
						"description": "The CONSUMER_SECRET for Bitbucket authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"username": {
						"type": "string",
						"description": "Your Bitbucket account's username"
					},
					"app_password": {
						"type": "string",
						"description": "The APP_PASSWORD for Bitbucket authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"verified": {
						"type": "boolean",
						"description": "`TRUE` if the REST API calling was successfully."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"GithubOAuthOptions": {
				"properties": {
					"client_id": {
						"type": "string",
						"description": "The app's CLIENT_ID for Github authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"client_secret": {
						"type": "string",
						"description": "The app's CLIENT_SECRET for Github authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"username": {
						"type": "string",
						"description": "Your Github account's username"
					},
					"personal_access_token": {
						"type": "string",
						"description": "The PERSONAL ACCESS TOKEN for Github authentication:\nto create new repo, commit, pull & push changes to the repositories."
					},
					"verified": {
						"type": "boolean",
						"description": "`TRUE` if the REST API calling was successfully."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"ProviderInfo": {
				"properties": {
					"name": {
						"type": "string"
					},
					"user_id": {
						"type": "string"
					},
					"access_token": {
						"type": "string"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"AccessTokenInfo": {
				"properties": {
					"access_token": {
						"type": "string"
					},
					"refresh_token": {
						"type": "string"
					},
					"expiredTimestamp": {
						"type": "number",
						"format": "double"
					},
					"expiredDate": {
						"type": "string",
						"format": "date-time"
					},
					"expiredDateGTM7": {
						"type": "string"
					}
				},
				"required": [
					"access_token",
					"expiredTimestamp",
					"expiredDate",
					"expiredDateGTM7"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IRoutePermission": {
				"type": "string",
				"enum": [
					"public",
					"full",
					"own",
					"create",
					"read",
					"update",
					"delete"
				]
			},
			"IRouteScope": {
				"type": "string",
				"enum": [
					"project",
					"workspace",
					"all",
					"team",
					"app"
				]
			},
			"RoleRoute": {
				"properties": {
					"path": {
						"type": "string",
						"description": "Route path"
					},
					"permissions": {
						"items": {
							"$ref": "#/components/schemas/IRoutePermission"
						},
						"type": "array",
						"default": "[\"full\"]"
					},
					"scope": {
						"items": {
							"$ref": "#/components/schemas/IRouteScope"
						},
						"type": "array",
						"description": "(TBC)",
						"default": "all"
					}
				},
				"required": [
					"path",
					"permissions"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IRole": {
				"properties": {
					"name": {
						"type": "string"
					},
					"routes": {
						"items": {
							"$ref": "#/components/schemas/RoleRoute"
						},
						"type": "array"
					},
					"maskedFields": {
						"items": {
							"type": "string"
						},
						"type": "array"
					},
					"type": {
						"type": "string",
						"description": "One of:\n- undefined | \"custom\": custom role\n- \"admin\"\t\t: \tdefault super admin role\n- \"moderator\"\t: \tdefault moderator role\n- \"member\"\t\t: \tdefault member role\n- \"guest\"\t\t: \tdefault guest role"
					}
				},
				"required": [
					"name",
					"routes"
				],
				"type": "object",
				"additionalProperties": false
			},
			"ITeam": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"RetentionType": {
				"type": "string",
				"enum": [
					"limit",
					"duration"
				]
			},
			"CloudStorageProvider": {
				"type": "string",
				"enum": [
					"cloudflare",
					"aws_s3",
					"do_space",
					"google"
				]
			},
			"IWorkspace": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Workspace name"
					},
					"slug": {
						"type": "string",
						"description": "Workspace slug: auto-generated by \"name\" column"
					},
					"public": {
						"type": "boolean",
						"description": "Is this a `public` workspace that anyone can join, otherwise it's a `private` workspace that needs approval on joining request."
					},
					"image": {
						"type": "string",
						"description": "Workspace profile picture"
					},
					"domain": {
						"type": "string",
						"description": "Workspace domain name"
					},
					"dx_key": {
						"type": "string",
						"description": "DXSITE API Key"
					},
					"dx_id": {
						"type": "string",
						"description": "DXSITE Workspace ID"
					},
					"settings": {
						"properties": {
							"notification": {
								"properties": {
									"elasticEmail": {
										"properties": {
											"events": {
												"items": {
													"type": "string"
												},
												"type": "array"
											},
											"apiKey": {
												"type": "string"
											},
											"enabled": {
												"type": "boolean"
											}
										},
										"required": [
											"events",
											"apiKey",
											"enabled"
										],
										"type": "object"
									},
									"jojo": {
										"properties": {
											"events": {
												"items": {
													"type": "string"
												},
												"type": "array"
											},
											"apiKey": {
												"type": "string"
											},
											"enabled": {
												"type": "boolean"
											}
										},
										"required": [
											"events",
											"apiKey",
											"enabled"
										],
										"type": "object"
									}
								},
								"type": "object"
							},
							"cloud_storage": {
								"properties": {
									"basePath": {
										"type": "string"
									},
									"baseUrl": {
										"type": "string"
									},
									"endpoint": {
										"type": "string"
									},
									"secretKey": {
										"type": "string"
									},
									"accessKey": {
										"type": "string"
									},
									"bucket": {
										"type": "string"
									},
									"region": {
										"type": "string"
									},
									"provider": {
										"$ref": "#/components/schemas/CloudStorageProvider"
									}
								},
								"required": [
									"basePath",
									"baseUrl",
									"endpoint",
									"secretKey",
									"accessKey",
									"bucket",
									"region",
									"provider"
								],
								"type": "object"
							},
							"system_log": {
								"properties": {
									"retention": {
										"properties": {
											"value": {
												"type": "number",
												"format": "double"
											},
											"type": {
												"$ref": "#/components/schemas/RetentionType"
											}
										},
										"required": [
											"value",
											"type"
										],
										"type": "object",
										"description": "Data retention information\n- `type` is \"duration\", value is \"miliseconds\"\n- `type` is \"limit\", value is \"MAX AMOUNT OF BACKUPS\""
									}
								},
								"type": "object"
							},
							"database_backup": {
								"properties": {
									"retention": {
										"properties": {
											"value": {
												"type": "number",
												"format": "double"
											},
											"type": {
												"$ref": "#/components/schemas/RetentionType"
											}
										},
										"required": [
											"value",
											"type"
										],
										"type": "object",
										"description": "Data retention information\n- `type` is \"duration\", value is \"miliseconds\"\n- `type` is \"limit\", value is \"MAX AMOUNT OF BACKUPS\""
									}
								},
								"type": "object"
							},
							"activity": {
								"properties": {
									"retention": {
										"properties": {
											"value": {
												"type": "number",
												"format": "double"
											},
											"type": {
												"$ref": "#/components/schemas/RetentionType"
											}
										},
										"required": [
											"value",
											"type"
										],
										"type": "object",
										"description": "Data retention information\n- `type` is \"duration\", value is \"miliseconds\"\n- `type` is \"limit\", value is \"MAX AMOUNT OF BACKUPS\""
									}
								},
								"type": "object"
							},
							"database": {},
							"ai": {
								"properties": {
									"apiKey": {
										"type": "string"
									},
									"model": {
										"type": "string"
									},
									"apiBaseUrl": {
										"type": "string"
									},
									"enabled": {
										"type": "boolean"
									}
								},
								"required": [
									"apiKey",
									"model",
									"apiBaseUrl",
									"enabled"
								],
								"type": "object"
							}
						},
						"type": "object",
						"description": "Workspace Settings"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"BuildStatus": {
				"type": "string",
				"enum": [
					"pending",
					"start",
					"building",
					"failed",
					"success",
					"cancelled"
				]
			},
			"DeployStatus": {
				"type": "string",
				"enum": [
					"pending",
					"failed",
					"success",
					"cancelled",
					"in_progress"
				]
			},
			"RegistryProviderType": {
				"type": "string",
				"enum": [
					"gcloud",
					"digitalocean",
					"dockerhub"
				]
			},
			"IContainerRegistry": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"isVerified": {
						"type": "boolean"
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default git provider"
					},
					"host": {
						"type": "string",
						"description": "The host (domain) of your container registry which you are using."
					},
					"organization": {
						"type": "string",
						"description": "Organization name in Docker Registry, or Project ID in Google/DigitalOcean Container Registry."
					},
					"imageBaseURL": {
						"type": "string",
						"description": "Base URL of the image, usually is the registry host URI combines with something else.\n- This will be used to combine with your project/app image path."
					},
					"provider": {
						"$ref": "#/components/schemas/RegistryProviderType",
						"description": "Provider's \"shortName\""
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials ti access services on this cloud provider\n- Apply for: Google Cloud, AWS,...\n- For example: Kubernetes Clusters, Single Sign-On,..."
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API access token to use services on this cloud provider\n- Apply for: Digital Ocean"
					},
					"dockerServer": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker registry server",
						"default": "https://index.docker.io/v1/"
					},
					"dockerEmail": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker email"
					},
					"dockerUsername": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker username"
					},
					"dockerPassword": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker password"
					},
					"imagePullSecret": {
						"properties": {
							"value": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"type": "object"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IGitProvider": {
				"description": "An interface that extends IBase and describes the properties of a Git provider.",
				"properties": {
					"_id": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"metadata": {},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"createdAt": {
						"type": "string",
						"format": "date-time",
						"description": "Created date"
					},
					"deletedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Deleted date"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Updated date"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"name": {
						"type": "string",
						"description": "The name of the Git provider."
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default git provider"
					},
					"host": {
						"type": "string",
						"description": "The host of the Git provider."
					},
					"org": {
						"type": "string",
						"description": "The Git workspace (ORG) of the Git provider."
					},
					"gitWorkspace": {
						"type": "string",
						"description": "Alias of `org` field, will be remove soon.",
						"deprecated": true
					},
					"repo": {
						"properties": {
							"sshPrefix": {
								"type": "string",
								"description": "The SSH prefix of the repository of the Git provider."
							},
							"url": {
								"type": "string",
								"description": "The URL of the repository of the Git provider."
							}
						},
						"type": "object",
						"description": "The repository of the Git provider."
					},
					"isOrg": {
						"type": "boolean",
						"description": "- `TRUE` if the git provider which connected by \"Administrator\"\n- `FALSE` if it was connected by workspace's members and won't be displayed on the dashboard."
					},
					"type": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "The type of the Git provider."
					},
					"bitbucket_oauth": {
						"$ref": "#/components/schemas/BitbucketOAuthOptions",
						"description": "Bitbucket OAuth Information"
					},
					"github_oauth": {
						"$ref": "#/components/schemas/GithubOAuthOptions",
						"description": "Github OAuth Information"
					},
					"method": {
						"type": "string",
						"enum": [
							"bearer",
							"basic"
						],
						"description": "Authorization header method"
					},
					"access_token": {
						"type": "string",
						"description": "The API access token of the Git provider,\nto create new repo, commit, pull & push changes to the repositories."
					},
					"refresh_token": {
						"type": "string",
						"description": "The API refresh token of the Git provider,\nto obtain new access token if it's expired"
					},
					"verified": {
						"type": "boolean",
						"description": "Verify status, `true` is successfully connected with the git workspace REST API."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"AppGitInfo": {
				"properties": {
					"repoSSH": {
						"type": "string",
						"description": "`REQUIRES`\n---\nA SSH URI of the source code repository"
					},
					"repoURL": {
						"type": "string",
						"description": "OPTIONAL\n---\nA SSH URI of the source code repository"
					},
					"provider": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "OPTIONAL\n---\nGit provider's type: `github`, `bitbucket`, `gitlab`"
					},
					"providerID": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/IGitProvider"
							}
						],
						"description": "OPTIONAL\n---\nGit provider's type: `github`, `bitbucket`, `gitlab`"
					}
				},
				"required": [
					"repoSSH"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IApp": {
				"description": "An interface that extends IBase and describes the properties of an app.",
				"properties": {
					"name": {
						"type": "string",
						"description": "The name of the app."
					},
					"image": {
						"type": "string",
						"description": "OPTIONAL: The image URI of this app on the Container Registry (without `TAG`).\n\nCombined from: `<registry-image-base-url>/<project-slug>/<app-name-slug>`\n\n**Don't** specify `tag` at the end! (e.g., `latest`, `beta`,...)",
						"example": "asia.gcr.io/my-workspace/my-project/my-app",
						"default": "<registry-image-base-url>/<project-slug>/<app-name-slug>"
					},
					"slug": {
						"type": "string",
						"description": "The slug of the app."
					},
					"createdBy": {
						"type": "string",
						"description": "The user who created the app."
					},
					"lastUpdatedBy": {
						"type": "string",
						"description": "The user who last updated the app."
					},
					"gitProvider": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IGitProvider"
							},
							{
								"type": "string"
							}
						],
						"description": "Git Provider of this app"
					},
					"git": {
						"$ref": "#/components/schemas/AppGitInfo",
						"description": "The Git information of the app."
					},
					"framework": {
						"properties": {
							"repoSSH": {
								"type": "string"
							},
							"repoURL": {
								"type": "string"
							},
							"version": {
								"type": "string"
							},
							"slug": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"type": "object",
						"description": "The framework information of the app."
					},
					"environment": {
						"properties": {},
						"additionalProperties": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/DeployEnvironment"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "object",
						"description": "The environment information of the app.",
						"deprecated": true
					},
					"deployEnvironment": {
						"properties": {},
						"additionalProperties": {
							"$ref": "#/components/schemas/DeployEnvironment"
						},
						"type": "object",
						"description": "The deploy environment information of the app."
					},
					"latestBuild": {
						"type": "string",
						"description": "The latest build of the app."
					},
					"buildNumber": {
						"type": "number",
						"format": "double",
						"description": "The incremental integer of build for this app"
					},
					"projectSlug": {
						"type": "string",
						"description": "The project slug of the app."
					},
					"archivedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when the application was archived (take down all deploy environments)"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"KubeEnvironmentVariable": {
				"properties": {
					"name": {
						"type": "string"
					},
					"value": {
						"type": "string"
					}
				},
				"required": [
					"name",
					"value"
				],
				"type": "object",
				"additionalProperties": false
			},
			"ObjectId": {
				"type": "string",
				"description": "A class representation of the BSON ObjectId type."
			},
			"IUser": {
				"properties": {
					"name": {
						"type": "string"
					},
					"username": {
						"type": "string",
						"description": "Unique username of a user\nThis equavilent with \"slug\""
					},
					"type": {
						"type": "string"
					},
					"email": {
						"type": "string",
						"description": "User email address"
					},
					"verified": {
						"type": "boolean",
						"description": "Is this user's email or phone verified?"
					},
					"image": {
						"type": "string",
						"description": "User profile picture URL"
					},
					"providers": {
						"items": {
							"$ref": "#/components/schemas/ProviderInfo"
						},
						"type": "array",
						"description": "List of Cloud Providers which this user can access to"
					},
					"password": {
						"type": "string",
						"description": "User password (hashed)"
					},
					"dxUserId": {
						"type": "string",
						"description": "User ID in DXUP.DEV"
					},
					"token": {
						"$ref": "#/components/schemas/AccessTokenInfo",
						"description": "User token"
					},
					"roles": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IRole"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"activeRole": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/IRole"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"teams": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/ITeam"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"workspaces": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IWorkspace"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"activeWorkspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"allowAccess": {
						"$ref": "#/components/schemas/UserAccessPermissions",
						"description": "User access permission settings"
					},
					"settings": {
						"properties": {
							"notification": {
								"properties": {
									"deploy": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"build": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"app": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"project": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"workspace": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									}
								},
								"type": "object"
							}
						},
						"required": [
							"notification"
						],
						"type": "object",
						"description": "User settings"
					}
				},
				"required": [
					"name",
					"email"
				],
				"type": "object",
				"additionalProperties": false
			},
			"AppStatus": {
				"type": "string",
				"enum": [
					"failed",
					"deploying",
					"healthy",
					"partial_healthy",
					"undeployed",
					"crashed",
					"unknown"
				]
			},
			"DeployEnvironmentVolume": {
				"properties": {
					"mountPath": {
						"type": "string",
						"description": "Location of mapped directory inside the container into this volume"
					},
					"type": {
						"type": "string",
						"description": "Type"
					},
					"hostPath": {
						"type": "string",
						"description": "Map directory on the host server to this volume"
					},
					"storageClass": {
						"type": "string",
						"description": "Kubernetes Storage Class"
					},
					"size": {
						"type": "string",
						"description": "Volume size"
					},
					"node": {
						"type": "string",
						"description": "Kubernetes node name"
					},
					"name": {
						"type": "string",
						"description": "Volume name"
					}
				},
				"required": [
					"mountPath",
					"storageClass",
					"size",
					"node",
					"name"
				],
				"type": "object"
			},
			"ResourceQuotaSize": {
				"type": "string",
				"enum": [
					"none",
					"1x",
					"2x",
					"3x",
					"4x",
					"5x",
					"6x",
					"7x",
					"8x",
					"9x",
					"10x"
				],
				"description": "Container quota resources"
			},
			"SslType": {
				"type": "string",
				"enum": [
					"none",
					"letsencrypt",
					"custom"
				],
				"default": "\"letsencrypt\""
			},
			"DeployEnvironment": {
				"description": "A deployment's environment of the application.",
				"properties": {
					"imageURL": {
						"type": "string",
						"description": "Image URI of this app on the Container Registry.\n- Combined from: `<registry-image-base-url>/<project-slug>/<app-name-slug>`\n- If you build from the source code, don't specify `tag` at the end! (eg. `latest`, `beta`,...)"
					},
					"namespace": {
						"type": "string",
						"description": "Destination namespace name"
					},
					"registry": {
						"type": "string",
						"description": "Container registry slug"
					},
					"provider": {
						"type": "string",
						"description": "Cloud provider's short name"
					},
					"cluster": {
						"type": "string",
						"description": "Cluster's slug"
					},
					"project": {
						"type": "string",
						"description": "[Google Cloud] PROJECT_ID",
						"deprecated": true
					},
					"region": {
						"type": "string",
						"description": "[Google Cloud] Region",
						"deprecated": true
					},
					"zone": {
						"type": "string",
						"description": "[Google Cloud] Zone",
						"deprecated": true
					},
					"size": {
						"$ref": "#/components/schemas/ResourceQuotaSize",
						"description": "Container quota resources"
					},
					"cpu": {
						"type": "string",
						"description": "Container's CPU"
					},
					"memory": {
						"type": "string",
						"description": "Container's memory"
					},
					"resources": {
						"properties": {
							"limits": {
								"properties": {
									"memory": {
										"type": "string"
									},
									"cpu": {
										"type": "string"
									}
								},
								"type": "object"
							},
							"usage": {
								"properties": {
									"memory": {
										"type": "string"
									},
									"cpu": {
										"type": "string"
									}
								},
								"type": "object"
							}
						},
						"type": "object",
						"description": "Container's resources"
					},
					"shouldInherit": {
						"type": "boolean",
						"description": "Set to `false` if you DON'T want to inherit the Ingress YAML config from the previous deployment",
						"default": "true"
					},
					"redirect": {
						"type": "boolean",
						"description": "Set to `false` if you don't want to redirect all the secondary domains to the primary domain.",
						"default": "true"
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "Container's scaling replicas",
						"default": "1"
					},
					"port": {
						"type": "number",
						"format": "double",
						"description": "Container's port"
					},
					"basePath": {
						"type": "string",
						"description": "Application base path in the endpoint URL",
						"default": "\"/\""
					},
					"domains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "List of application's domains"
					},
					"cdn": {
						"type": "boolean",
						"description": "Flag to enable CDN for this application",
						"default": "false;"
					},
					"ssl": {
						"$ref": "#/components/schemas/SslType",
						"description": "SSL Certificate Issuer"
					},
					"healthzPath": {
						"type": "string",
						"nullable": true,
						"description": "Health check path",
						"default": "\"/\""
					},
					"healthzPort": {
						"type": "number",
						"format": "double",
						"nullable": true,
						"description": "Healthz port",
						"default": "`port`"
					},
					"tlsSecret": {
						"type": "string",
						"description": "Secret name to hold the key of SSL, will be automatically generated.\nOnly need to specify when using \"custom\" SSL (which is the SSL from third-party issuer)"
					},
					"ingress": {
						"type": "string",
						"description": "Kubernetes Ingress Class"
					},
					"name": {
						"type": "string",
						"description": "Name of the deploy environment"
					},
					"app": {
						"$ref": "#/components/schemas/IApp",
						"description": "App"
					},
					"appSlug": {
						"type": "string"
					},
					"appName": {
						"type": "string"
					},
					"projectSlug": {
						"type": "string"
					},
					"buildId": {
						"type": "string",
						"description": "ObjectID of the build associated with this deploy environment."
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag is image's tag (no special characters, eg. \"dot\" or \"comma\")"
					},
					"buildNumber": {
						"type": "string",
						"description": "A incremental number digit of a build."
					},
					"appVersion": {
						"type": "string",
						"description": "The app version"
					},
					"latestRelease": {
						"type": "string",
						"description": "ID of the latest release associated with this deploy environment."
					},
					"cliVersion": {
						"type": "string",
						"description": "The CLI version"
					},
					"namespaceYaml": {
						"type": "string",
						"description": "Content of namespace YAML file"
					},
					"deploymentName": {
						"type": "string",
						"description": "Name of the deployment"
					},
					"deploymentYaml": {
						"type": "string",
						"description": "Content of deployment YAML file"
					},
					"prereleaseDeploymentYaml": {
						"type": "string",
						"description": "Content of prerelease deployment YAML file"
					},
					"prereleaseUrl": {
						"type": "string",
						"description": "Prerelease endpoint URL"
					},
					"envVars": {
						"items": {
							"$ref": "#/components/schemas/KubeEnvironmentVariable"
						},
						"type": "array",
						"description": "Collection array of environment variables"
					},
					"createdBy": {
						"type": "string",
						"description": "User name of the first person who deploy on this environment."
					},
					"lastUpdatedBy": {
						"type": "string",
						"description": "User name of the last person who deploy or update this environment."
					},
					"owner": {
						"type": "string",
						"description": "Owner"
					},
					"ownerSlug": {
						"type": "string"
					},
					"creator": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							}
						],
						"description": "ID of the creator\n! DO NOT REMOVE THIS, OTHERWISE \"TSOA\" (Swagger) WILL BE BROKEN (I DON'T KNOW WHY...)"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Update time"
					},
					"sleepAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when it's put to sleep"
					},
					"awakeAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when it's awaken"
					},
					"tookDownAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when it's taken down"
					},
					"status": {
						"$ref": "#/components/schemas/AppStatus",
						"description": "Deployment's status"
					},
					"readyCount": {
						"type": "number",
						"format": "double",
						"description": "Amount of ready instances"
					},
					"screenshot": {
						"type": "string",
						"description": "A screenshot URL from build success"
					},
					"volumes": {
						"items": {
							"$ref": "#/components/schemas/DeployEnvironmentVolume"
						},
						"type": "array",
						"description": "Persistent Volume"
					}
				},
				"required": [
					"buildTag"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IBuild": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"tag": {
						"type": "string",
						"description": "Image tag is also \"buildTag\""
					},
					"num": {
						"type": "number",
						"format": "double",
						"description": "Build number"
					},
					"startTime": {
						"type": "string",
						"format": "date-time",
						"description": "Build start time"
					},
					"endTime": {
						"type": "string",
						"format": "date-time",
						"description": "Build end time"
					},
					"duration": {
						"type": "number",
						"format": "double",
						"description": "Build duration in miliseconds"
					},
					"env": {
						"type": "string",
						"description": "Build for which deploy environment\n- **[OPTIONAL] DO NOT rely on this!**\n- A build should be able to be used for any deploy environments."
					},
					"message": {
						"type": "string",
						"description": "Release revision message"
					},
					"branch": {
						"type": "string",
						"description": "Build from which git branch"
					},
					"cliVersion": {
						"type": "string"
					},
					"serverVersion": {
						"type": "string"
					},
					"serverLocation": {
						"type": "string"
					},
					"createdBy": {
						"type": "string"
					},
					"status": {
						"$ref": "#/components/schemas/BuildStatus"
					},
					"deployStatus": {
						"$ref": "#/components/schemas/DeployStatus"
					},
					"projectSlug": {
						"type": "string"
					},
					"appSlug": {
						"type": "string",
						"description": "App's slug"
					},
					"logs": {
						"type": "string"
					},
					"registry": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IContainerRegistry"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the container registry"
					},
					"app": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IApp"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the app"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IProject": {
				"properties": {
					"name": {
						"type": "string"
					},
					"isDefault": {
						"type": "boolean"
					},
					"image": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"apiKey": {
						"type": "string"
					},
					"clientId": {
						"type": "string"
					},
					"clientSecret": {
						"type": "string"
					},
					"createdBy": {
						"type": "string"
					},
					"lastUpdatedBy": {
						"type": "string"
					},
					"latestBuildTag": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						],
						"description": "Latest build tag of an application in this project"
					},
					"latestBuild": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IBuild"
							},
							{
								"type": "string"
							}
						],
						"description": "Latest build ID or DOCUMENT"
					},
					"appSlugs": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "List of App slugs"
					},
					"apps": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"$ref": "#/components/schemas/IApp"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array",
						"description": "List of App IDs"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"archivedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when the project was archived (take down all deploy environments)"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"CloudProviderType": {
				"type": "string",
				"enum": [
					"gcloud",
					"digitalocean",
					"custom"
				]
			},
			"ICluster": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Cluster name"
					},
					"slug": {
						"type": "string",
						"description": "Cluster slug"
					},
					"isVerified": {
						"type": "boolean",
						"description": "Is cluster verified"
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default cluster"
					},
					"shortName": {
						"type": "string",
						"description": "A cluster name on the cloud provider\n- **Applied for GKE & DOK only**"
					},
					"contextName": {
						"type": "string",
						"description": "Cluster context name (to access via `kubectl context`)"
					},
					"provider": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/ICloudProvider"
							}
						],
						"description": "Cloud provider of this cluster"
					},
					"providerShortName": {
						"$ref": "#/components/schemas/CloudProviderType",
						"description": "Short name of the cloud provider"
					},
					"zone": {
						"type": "string",
						"description": "Cloud zone of this cluster"
					},
					"region": {
						"type": "string",
						"description": "Cloud region of this cluster"
					},
					"projectID": {
						"type": "string",
						"description": "[GOOGLE ONLY] Project ID of this cluster"
					},
					"primaryDomain": {
						"type": "string",
						"description": "#### `REQUIRES`\n---\nThe PRIMARY domain of this cluster"
					},
					"primaryIP": {
						"type": "string",
						"description": "The PRIMARY IP ADDRESS of this cluster"
					},
					"domains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Alternative domains or project's domains of this cluster"
					},
					"kubeConfig": {
						"type": "string",
						"description": "The KUBECONFIG data to access to this cluster"
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials to access this cluster"
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API ACCESS TOKEN to access this cluster"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"ICloudProvider": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Cloud provider name"
					},
					"shortName": {
						"$ref": "#/components/schemas/CloudProviderType",
						"description": "Cloud provider short name, without spacing & special characters"
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API access token to use services on this cloud provider\n- Apply for: Digital Ocean"
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials ti access services on this cloud provider\n- Apply for: Google Cloud, AWS,...\n- For example: Kubernetes Clusters, Single Sign-On,..."
					},
					"clusters": {
						"anyOf": [
							{
								"items": {
									"type": "string"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/ICluster"
								},
								"type": "array"
							}
						],
						"description": "List of available clusters on this provider"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"CloudDatabaseType": {
				"type": "string",
				"enum": [
					"mongodb",
					"mysql",
					"mariadb",
					"postgresql",
					"sqlserver",
					"sqlite",
					"redis",
					"dynamodb"
				]
			},
			"RequestMethodType": {
				"type": "string",
				"enum": [
					"GET",
					"POST",
					"PATCH",
					"DELETE"
				]
			},
			"Record_string.string_": {
				"properties": {},
				"type": "object",
				"description": "Construct a type with a set of properties K of type T"
			},
			"CronjobRepeatUnit": {
				"type": "string",
				"enum": [
					"minute",
					"hour",
					"day",
					"month",
					"year"
				]
			},
			"CronjobRepeat": {
				"properties": {
					"unit": {
						"$ref": "#/components/schemas/CronjobRepeatUnit"
					},
					"range": {
						"type": "number",
						"format": "double"
					}
				},
				"type": "object"
			},
			"WeekDay": {
				"type": "string",
				"enum": [
					"sun",
					"mon",
					"tue",
					"wed",
					"thu",
					"fri",
					"sat"
				]
			},
			"CronjonRepeatCondition": {
				"properties": {
					"atMonths": {
						"items": {
							"type": "number",
							"format": "double"
						},
						"type": "array",
						"description": "Array of days from 0 to 11"
					},
					"atDays": {
						"items": {
							"type": "number",
							"format": "double"
						},
						"type": "array",
						"description": "Array of days from 1 to 31"
					},
					"atWeekDays": {
						"items": {
							"$ref": "#/components/schemas/WeekDay"
						},
						"type": "array",
						"description": "Array of weekdays"
					},
					"atMins": {
						"items": {
							"type": "number",
							"format": "double"
						},
						"type": "array",
						"description": "Array of minutes from 0 to 59"
					},
					"atHours": {
						"items": {
							"type": "number",
							"format": "double"
						},
						"type": "array",
						"description": "Array of hours from 0 to 23"
					}
				},
				"type": "object"
			},
			"CronjobStatus": {
				"type": "string",
				"enum": [
					"failed",
					"success",
					"cancelled",
					"in_progress"
				]
			},
			"CronjobHistory": {
				"properties": {
					"message": {
						"type": "string"
					},
					"responseStatus": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"type": "number",
								"format": "double"
							}
						]
					},
					"status": {
						"$ref": "#/components/schemas/CronjobStatus"
					},
					"runAt": {
						"type": "string",
						"format": "date-time"
					}
				},
				"required": [
					"message",
					"responseStatus",
					"status",
					"runAt"
				],
				"type": "object"
			},
			"ICronjob": {
				"properties": {
					"name": {
						"type": "string"
					},
					"url": {
						"type": "string"
					},
					"method": {
						"$ref": "#/components/schemas/RequestMethodType"
					},
					"params": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"headers": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"body": {},
					"nextRunAt": {
						"type": "string",
						"format": "date-time"
					},
					"endDate": {
						"type": "string",
						"format": "date-time"
					},
					"repeat": {
						"$ref": "#/components/schemas/CronjobRepeat"
					},
					"repeatCondition": {
						"$ref": "#/components/schemas/CronjonRepeatCondition"
					},
					"history": {
						"items": {
							"$ref": "#/components/schemas/CronjobHistory"
						},
						"type": "array"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"ICloudDatabase": {
				"properties": {
					"name": {
						"type": "string"
					},
					"verified": {
						"type": "boolean"
					},
					"type": {
						"$ref": "#/components/schemas/CloudDatabaseType"
					},
					"provider": {
						"type": "string"
					},
					"user": {
						"type": "string"
					},
					"pass": {
						"type": "string"
					},
					"host": {
						"type": "string"
					},
					"port": {
						"type": "number",
						"format": "double"
					},
					"authDb": {
						"type": "string"
					},
					"url": {
						"type": "string"
					},
					"autoBackup": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ICronjob"
							}
						],
						"description": "Cronjob ID"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"BackupStatus": {
				"type": "string",
				"enum": [
					"start",
					"failed",
					"success",
					"cancelled",
					"in_progress"
				]
			},
			"ICloudDatabaseBackup": {
				"properties": {
					"name": {
						"type": "string"
					},
					"status": {
						"$ref": "#/components/schemas/BackupStatus"
					},
					"path": {
						"type": "string",
						"description": "Backup file path"
					},
					"url": {
						"type": "string",
						"description": "Backup file URL"
					},
					"type": {
						"$ref": "#/components/schemas/CloudDatabaseType"
					},
					"dbSlug": {
						"type": "string"
					},
					"database": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						]
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IFramework": {
				"description": "An interface that extends IBase and describes the properties of a framework.",
				"properties": {
					"name": {
						"type": "string"
					},
					"host": {
						"type": "string"
					},
					"gitProvider": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "Type of the Git Provider"
					},
					"isPrivate": {
						"type": "boolean",
						"description": "Git repository access privacy",
						"deprecated": true
					},
					"git": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IGitProvider"
							}
						],
						"description": "ID of the Git Provider"
					},
					"repoURL": {
						"type": "string",
						"description": "The repository URL of the framework."
					},
					"repoSSH": {
						"type": "string",
						"description": "The SSH URL of the framework."
					},
					"mainBranch": {
						"type": "string",
						"description": "The main branch of the framework."
					},
					"downloads": {
						"type": "number",
						"format": "double",
						"description": "The number of downloads for the framework."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"UserAccessPermissions": {
				"properties": {
					"container_registries": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IContainerRegistry"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"frameworks": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IFramework"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"gits": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IGitProvider"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"database_backups": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/ICloudDatabaseBackup"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"databases": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/ICloudDatabase"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"clusters": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/ICluster"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"apps": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IApp"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"projects": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IProject"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					}
				},
				"type": "object",
				"description": "### User access permission settings:\n- `undefined`: all\n- `[]`: none\n- `[ ...project_id... ]`: some"
			},
			"WebhookChannel": {
				"type": "string",
				"enum": [
					"http_callback",
					"email",
					"sms",
					"web_push",
					"push_notification",
					"instant_message"
				]
			},
			"Pick_IApp.Exclude_keyofIApp.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string",
						"description": "The name of the app."
					},
					"image": {
						"type": "string",
						"description": "OPTIONAL: The image URI of this app on the Container Registry (without `TAG`).\n\nCombined from: `<registry-image-base-url>/<project-slug>/<app-name-slug>`\n\n**Don't** specify `tag` at the end! (e.g., `latest`, `beta`,...)",
						"example": "asia.gcr.io/my-workspace/my-project/my-app",
						"default": "<registry-image-base-url>/<project-slug>/<app-name-slug>"
					},
					"slug": {
						"type": "string",
						"description": "The slug of the app."
					},
					"createdBy": {
						"type": "string",
						"description": "The user who created the app."
					},
					"lastUpdatedBy": {
						"type": "string",
						"description": "The user who last updated the app."
					},
					"gitProvider": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IGitProvider"
							},
							{
								"type": "string"
							}
						],
						"description": "Git Provider of this app"
					},
					"git": {
						"$ref": "#/components/schemas/AppGitInfo",
						"description": "The Git information of the app."
					},
					"framework": {
						"properties": {
							"repoSSH": {
								"type": "string"
							},
							"repoURL": {
								"type": "string"
							},
							"version": {
								"type": "string"
							},
							"slug": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"type": "object",
						"description": "The framework information of the app."
					},
					"environment": {
						"properties": {},
						"additionalProperties": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/DeployEnvironment"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "object",
						"description": "The environment information of the app.",
						"deprecated": true
					},
					"deployEnvironment": {
						"properties": {},
						"additionalProperties": {
							"$ref": "#/components/schemas/DeployEnvironment"
						},
						"type": "object",
						"description": "The deploy environment information of the app."
					},
					"latestBuild": {
						"type": "string",
						"description": "The latest build of the app."
					},
					"buildNumber": {
						"type": "number",
						"format": "double",
						"description": "The incremental integer of build for this app"
					},
					"projectSlug": {
						"type": "string",
						"description": "The project slug of the app."
					},
					"archivedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when the application was archived (take down all deploy environments)"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IApp.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IApp.Exclude_keyofIApp.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"AppDto": {
				"$ref": "#/components/schemas/Omit_IApp.keyofHiddenBodyKeys_"
			},
			"IPatchQueryParams": {
				"properties": {
					"populate": {
						"type": "string",
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`"
					},
					"select": {
						"type": "string"
					},
					"order": {
						"type": "string",
						"example": "-updatedAt,-createdAt"
					},
					"raw": {
						"type": "boolean",
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"default": "false"
					},
					"_id": {
						"type": "string",
						"description": "Find one item by `{ObjectID}`"
					},
					"slug": {
						"type": "string",
						"description": "Find one item by slug"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IDeleteQueryParams": {
				"properties": {
					"id": {
						"type": "string",
						"description": "Delete one item by `{ObjectID}`"
					},
					"slug": {
						"type": "string",
						"description": "Delete one item by `{slug}`"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"ClientDeployEnvironmentConfig": {
				"properties": {
					"imageURL": {
						"type": "string",
						"description": "Image URI of this app on the Container Registry.\n- Combined from: `<registry-image-base-url>/<project-slug>/<app-name-slug>`\n- If you build from the source code, don't specify `tag` at the end! (eg. `latest`, `beta`,...)"
					},
					"namespace": {
						"type": "string",
						"description": "Destination namespace name"
					},
					"registry": {
						"type": "string",
						"description": "Container registry slug"
					},
					"provider": {
						"type": "string",
						"description": "Cloud provider's short name"
					},
					"cluster": {
						"type": "string",
						"description": "Cluster's slug"
					},
					"project": {
						"type": "string",
						"description": "[Google Cloud] PROJECT_ID",
						"deprecated": true
					},
					"region": {
						"type": "string",
						"description": "[Google Cloud] Region",
						"deprecated": true
					},
					"zone": {
						"type": "string",
						"description": "[Google Cloud] Zone",
						"deprecated": true
					},
					"size": {
						"$ref": "#/components/schemas/ResourceQuotaSize",
						"description": "Container quota resources"
					},
					"cpu": {
						"type": "string",
						"description": "Container's CPU"
					},
					"memory": {
						"type": "string",
						"description": "Container's memory"
					},
					"resources": {
						"properties": {
							"limits": {
								"properties": {
									"memory": {
										"type": "string"
									},
									"cpu": {
										"type": "string"
									}
								},
								"type": "object"
							},
							"usage": {
								"properties": {
									"memory": {
										"type": "string"
									},
									"cpu": {
										"type": "string"
									}
								},
								"type": "object"
							}
						},
						"type": "object",
						"description": "Container's resources"
					},
					"shouldInherit": {
						"type": "boolean",
						"description": "Set to `false` if you DON'T want to inherit the Ingress YAML config from the previous deployment",
						"default": "true"
					},
					"redirect": {
						"type": "boolean",
						"description": "Set to `false` if you don't want to redirect all the secondary domains to the primary domain.",
						"default": "true"
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "Container's scaling replicas",
						"default": "1"
					},
					"port": {
						"type": "number",
						"format": "double",
						"description": "Container's port"
					},
					"basePath": {
						"type": "string",
						"description": "Application base path in the endpoint URL",
						"default": "\"/\""
					},
					"domains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "List of application's domains"
					},
					"cdn": {
						"type": "boolean",
						"description": "Flag to enable CDN for this application",
						"default": "false;"
					},
					"ssl": {
						"$ref": "#/components/schemas/SslType",
						"description": "SSL Certificate Issuer"
					},
					"healthzPath": {
						"type": "string",
						"nullable": true,
						"description": "Healthz path"
					},
					"healthzPort": {
						"type": "number",
						"format": "double",
						"nullable": true,
						"description": "Healthz port",
						"default": "`port`"
					},
					"tlsSecret": {
						"type": "string",
						"description": "Secret name to hold the key of SSL, will be automatically generated.\nOnly need to specify when using \"custom\" SSL (which is the SSL from third-party issuer)"
					},
					"ingress": {
						"type": "string",
						"description": "Kubernetes Ingress Class"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"AppConfig": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string"
					},
					"owner": {
						"type": "string"
					},
					"workspace": {
						"type": "string"
					},
					"cliVersion": {
						"type": "string"
					},
					"project": {
						"type": "string",
						"description": "Project SLUG"
					},
					"framework": {
						"properties": {
							"version": {
								"type": "string"
							},
							"repoSSH": {
								"type": "string"
							},
							"slug": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"type": "object"
					},
					"git": {
						"properties": {
							"repoSSH": {
								"type": "string"
							},
							"repoURL": {
								"type": "string"
							},
							"provider": {
								"type": "string"
							}
						},
						"type": "object"
					},
					"deployEnvironment": {
						"properties": {},
						"additionalProperties": {
							"$ref": "#/components/schemas/ClientDeployEnvironmentConfig"
						},
						"type": "object"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"DeployEnvironmentData": {
				"properties": {
					"registry": {
						"type": "string",
						"description": "`REQUIRES`\n---\nContainer registry's slug"
					},
					"cluster": {
						"type": "string",
						"description": "`REQUIRES`\n---\nCluster's short name"
					},
					"port": {
						"type": "number",
						"format": "double",
						"description": "`REQUIRES`\n---\nContainer's port"
					},
					"imageURL": {
						"type": "string",
						"description": "`REQUIRES`\n---\nImage URI of this app on the Container Registry (without `TAG`).\n- Combined from: `<registry-image-base-url>/<project-slug>/<app-name-slug>`\n- **Don't** specify `tag` at the end! (eg. `latest`, `beta`,...)",
						"example": "asia.gcr.io/my-workspace/my-project/my-app",
						"default": "<registry-image-base-url>/<project-slug>/<app-name-slug>"
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag is image's tag (no special characters, eg. \"dot\" or \"comma\")"
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "OPTIONAL\n---\nContainer's scaling replicas",
						"default": "1"
					},
					"namespace": {
						"type": "string",
						"description": "OPTIONAL\n---\nDestination namespace name, will be generated automatically by `<project-slug>-<env>` if not specified."
					},
					"size": {
						"$ref": "#/components/schemas/ResourceQuotaSize",
						"description": "OPTIONAL [DEPRECATED SOON]\n---\n### [DEPRECATED SOON] Use `cpu` and `memory` instead.\nContainer quota resources",
						"deprecated": true
					},
					"cpu": {
						"type": "string",
						"description": "OPTIONAL\n---\nContainer's CPU"
					},
					"memory": {
						"type": "string",
						"description": "OPTIONAL\n---\nContainer's memory"
					},
					"shouldInherit": {
						"type": "boolean",
						"description": "OPTIONAL\n---\nSet to `false` if you DON'T want to inherit the Ingress YAML config from the previous deployment",
						"default": "true"
					},
					"redirect": {
						"type": "boolean",
						"description": "OPTIONAL\n---\nSet to `false` if you don't want to redirect all the secondary domains to the primary domain.",
						"default": "true"
					},
					"useGeneratedDomain": {
						"type": "boolean",
						"description": "OPTIONAL\n---\nSet `true` if you want to use a generated domain for this deploy environment.",
						"default": "false"
					},
					"domains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "OPTIONAL\n---\nList of application's domains.",
						"default": "[]"
					},
					"cdn": {
						"type": "boolean",
						"description": "OPTIONAL\n---\nFlag to enable CDN for this application",
						"default": "false"
					},
					"ssl": {
						"$ref": "#/components/schemas/SslType",
						"description": "OPTIONAL\n---\nSelect your SSL Certificate Issuer, one of:\n- `letsencrypt`\n- `custom`\n- `none`"
					},
					"tlsSecret": {
						"type": "string",
						"description": "OPTIONAL\n---\nSecret name to hold the key of SSL, will be automatically generated with the primary domain.\nOnly need to specify when using \"custom\" SSL (which is the SSL from third-party issuer)"
					},
					"ingress": {
						"type": "string",
						"description": "OPTIONAL\n---\nKubernetes Ingress Class",
						"default": "nginx"
					},
					"lastUpdatedBy": {
						"type": "string",
						"description": "OPTIONAL\n---\nUsername of the person who update the app"
					}
				},
				"required": [
					"registry",
					"cluster",
					"port",
					"imageURL",
					"buildTag"
				],
				"type": "object",
				"additionalProperties": false
			},
			"CreateEnvVarsDto": {
				"properties": {
					"slug": {
						"type": "string",
						"description": "App slug"
					},
					"env": {
						"type": "string",
						"description": "Deploy environment name"
					},
					"envVars": {
						"type": "string",
						"description": "Array of variables to be created on deploy environment in JSON format"
					}
				},
				"required": [
					"slug",
					"env",
					"envVars"
				],
				"type": "object",
				"additionalProperties": false
			},
			"UpdateEnvVarsDto": {
				"properties": {
					"slug": {
						"type": "string",
						"description": "App slug"
					},
					"env": {
						"type": "string",
						"description": "Deploy environment name"
					},
					"envVars": {
						"items": {
							"$ref": "#/components/schemas/KubeEnvironmentVariable"
						},
						"type": "array",
						"description": "Array of variables to be created on deploy environment in JSON format"
					}
				},
				"required": [
					"slug",
					"env",
					"envVars"
				],
				"type": "object",
				"additionalProperties": false
			},
			"Pick_DeployEnvironmentVolume.name-or-size-or-mountPath_": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Volume name"
					},
					"size": {
						"type": "string",
						"description": "Volume size"
					},
					"mountPath": {
						"type": "string",
						"description": "Location of mapped directory inside the container into this volume"
					}
				},
				"required": [
					"name",
					"size",
					"mountPath"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"interfaces.IGetQueryParams": {
				"properties": {
					"populate": {
						"type": "string",
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`"
					},
					"select": {
						"type": "string"
					},
					"order": {
						"type": "string",
						"example": "-updatedAt,-createdAt"
					},
					"raw": {
						"type": "boolean",
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"default": "false"
					},
					"page": {
						"type": "number",
						"format": "double"
					},
					"size": {
						"type": "number",
						"format": "double"
					},
					"limit": {
						"type": "number",
						"format": "double"
					},
					"skip": {
						"type": "number",
						"format": "double"
					},
					"id": {
						"type": "string",
						"description": "Find one item by `{ObjectID}`"
					},
					"_id": {
						"type": "string"
					},
					"search": {
						"type": "boolean",
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"default": "true"
					},
					"download": {
						"type": "boolean",
						"description": "If `true`, return the excel binary file to download.",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"Pick_IBuild.Exclude_keyofIBuild.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"createdBy": {
						"type": "string"
					},
					"projectSlug": {
						"type": "string"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"app": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IApp"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the app"
					},
					"duration": {
						"type": "number",
						"format": "double",
						"description": "Build duration in miliseconds"
					},
					"tag": {
						"type": "string",
						"description": "Image tag is also \"buildTag\""
					},
					"num": {
						"type": "number",
						"format": "double",
						"description": "Build number"
					},
					"startTime": {
						"type": "string",
						"format": "date-time",
						"description": "Build start time"
					},
					"endTime": {
						"type": "string",
						"format": "date-time",
						"description": "Build end time"
					},
					"env": {
						"type": "string",
						"description": "Build for which deploy environment\n- **[OPTIONAL] DO NOT rely on this!**\n- A build should be able to be used for any deploy environments."
					},
					"message": {
						"type": "string",
						"description": "Release revision message"
					},
					"branch": {
						"type": "string",
						"description": "Build from which git branch"
					},
					"cliVersion": {
						"type": "string"
					},
					"serverVersion": {
						"type": "string"
					},
					"serverLocation": {
						"type": "string"
					},
					"status": {
						"$ref": "#/components/schemas/BuildStatus"
					},
					"deployStatus": {
						"$ref": "#/components/schemas/DeployStatus"
					},
					"appSlug": {
						"type": "string",
						"description": "App's slug"
					},
					"logs": {
						"type": "string"
					},
					"registry": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IContainerRegistry"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the container registry"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IBuild.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IBuild.Exclude_keyofIBuild.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.BuildDto": {
				"$ref": "#/components/schemas/Omit_IBuild.keyofHiddenBodyKeys_"
			},
			"interfaces.IPostQueryParams": {
				"properties": {
					"populate": {
						"type": "string",
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`"
					},
					"select": {
						"type": "string"
					},
					"order": {
						"type": "string",
						"example": "-updatedAt,-createdAt"
					},
					"raw": {
						"type": "boolean",
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"interfaces.IDeleteQueryParams": {
				"properties": {
					"id": {
						"type": "string",
						"description": "Delete one item by `{ObjectID}`"
					},
					"slug": {
						"type": "string",
						"description": "Delete one item by `{slug}`"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"BuildPlatform": {
				"type": "string",
				"enum": [
					"linux/arm64",
					"linux/amd64",
					"linux/amd64/v2",
					"linux/riscv64",
					"linux/ppc64le",
					"linux/s390x",
					"linux/386",
					"linux/mips64le",
					"linux/mips64",
					"linux/arm/v7",
					"linux/arm/v6"
				]
			},
			"buildModule.StartBuildParams": {
				"properties": {
					"message": {
						"type": "string",
						"description": "Revision message"
					},
					"shouldDeploy": {
						"type": "boolean",
						"description": "If `TRUE`, skip trigger webhook notification & process deploy this build",
						"default": "false"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "Enable debug mode",
						"default": "false"
					},
					"serverLocation": {
						"type": "string",
						"description": "Current DXUP server location"
					},
					"serverVersion": {
						"type": "string",
						"description": "Current DXUP server version"
					},
					"cliVersion": {
						"type": "string",
						"description": "CLI version of client user"
					},
					"args": {
						"items": {
							"properties": {
								"value": {
									"type": "string"
								},
								"name": {
									"type": "string"
								}
							},
							"required": [
								"value",
								"name"
							],
							"type": "object"
						},
						"type": "array",
						"description": "Build arguments"
					},
					"platforms": {
						"items": {
							"$ref": "#/components/schemas/BuildPlatform"
						},
						"type": "array",
						"description": "Targeted platform arch: linux/arm64, linux/amd64,..."
					},
					"buildWatch": {
						"type": "boolean",
						"description": "Enable async to watch the build process",
						"default": "true"
					},
					"buildDir": {
						"type": "string",
						"description": "Path to the source code directory\n* [OPTIONAL] Only apply for CLI command, has no effects on API call"
					},
					"env": {
						"type": "string",
						"description": "Select the deploy environment to build image, in this case, this info is using for selecting \"Dockerfile\"\nof specific deploy environment only, for example: \"Dockerfile.dev\" or \"Dockerfile.prod\",\nif you don't specify \"env\", a default \"Dockerfile\" will be selected.\n- **[OPTIONAL] SHOULD NOT rely on this!**\n- A build should be able to used for any deploy environments."
					},
					"registrySlug": {
						"type": "string",
						"description": "Slug of the Container Registry"
					},
					"user": {
						"$ref": "#/components/schemas/IUser",
						"description": "{User} instance of the author\n- `If passing \"user\", no need to pass \"userId\" and vice versa.`"
					},
					"userId": {
						"type": "string",
						"description": "ID of the author\n- `If passing \"userId\", no need to pass \"user\" and vice versa.`"
					},
					"buildNumber": {
						"type": "number",
						"format": "double",
						"description": "An incremental number of build"
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag is also an container image's tag"
					},
					"gitBranch": {
						"type": "string",
						"description": "Select a git branch to pull source code & build"
					},
					"appSlug": {
						"type": "string",
						"description": "App's slug"
					}
				},
				"required": [
					"registrySlug",
					"gitBranch",
					"appSlug"
				],
				"type": "object"
			},
			"Pick_StartBuildParams.platforms-or-args-or-registrySlug-or-buildTag-or-buildWatch_": {
				"properties": {
					"platforms": {
						"items": {
							"$ref": "#/components/schemas/BuildPlatform"
						},
						"type": "array",
						"description": "Targeted platform arch: linux/arm64, linux/amd64,..."
					},
					"args": {
						"items": {
							"properties": {
								"value": {
									"type": "string"
								},
								"name": {
									"type": "string"
								}
							},
							"required": [
								"value",
								"name"
							],
							"type": "object"
						},
						"type": "array",
						"description": "Build arguments"
					},
					"registrySlug": {
						"type": "string",
						"description": "Slug of the Container Registry"
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag is also an container image's tag"
					},
					"buildWatch": {
						"type": "boolean",
						"description": "Enable async to watch the build process",
						"default": "true"
					}
				},
				"required": [
					"registrySlug"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"buildModule.RerunBuildParams": {
				"$ref": "#/components/schemas/Pick_StartBuildParams.platforms-or-args-or-registrySlug-or-buildTag-or-buildWatch_"
			},
			"Pick_ICluster.Exclude_keyofICluster.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Cluster name"
					},
					"slug": {
						"type": "string",
						"description": "Cluster slug"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default cluster"
					},
					"isVerified": {
						"type": "boolean",
						"description": "Is cluster verified"
					},
					"shortName": {
						"type": "string",
						"description": "A cluster name on the cloud provider\n- **Applied for GKE & DOK only**"
					},
					"contextName": {
						"type": "string",
						"description": "Cluster context name (to access via `kubectl context`)"
					},
					"provider": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/ICloudProvider"
							}
						],
						"description": "Cloud provider of this cluster"
					},
					"providerShortName": {
						"$ref": "#/components/schemas/CloudProviderType",
						"description": "Short name of the cloud provider"
					},
					"zone": {
						"type": "string",
						"description": "Cloud zone of this cluster"
					},
					"region": {
						"type": "string",
						"description": "Cloud region of this cluster"
					},
					"projectID": {
						"type": "string",
						"description": "[GOOGLE ONLY] Project ID of this cluster"
					},
					"primaryDomain": {
						"type": "string",
						"description": "#### `REQUIRES`\n---\nThe PRIMARY domain of this cluster"
					},
					"primaryIP": {
						"type": "string",
						"description": "The PRIMARY IP ADDRESS of this cluster"
					},
					"domains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Alternative domains or project's domains of this cluster"
					},
					"kubeConfig": {
						"type": "string",
						"description": "The KUBECONFIG data to access to this cluster"
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials to access this cluster"
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API ACCESS TOKEN to access this cluster"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ICluster.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ICluster.Exclude_keyofICluster.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.ClusterDto": {
				"$ref": "#/components/schemas/Omit_ICluster.keyofHiddenBodyKeys_"
			},
			"ContainerRegistrySecretOptions": {
				"properties": {
					"registrySlug": {
						"type": "string",
						"description": "Registry slug"
					},
					"clusterSlug": {
						"type": "string",
						"description": "Slug of targeted cluster to create new `imagePullSecrets`"
					},
					"namespace": {
						"type": "string",
						"description": "Targeted namespace to create new `imagePullSecrets`"
					}
				},
				"required": [
					"registrySlug",
					"clusterSlug"
				],
				"type": "object",
				"additionalProperties": false
			},
			"Pick_ICloudDatabase.Exclude_keyofICloudDatabase.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"host": {
						"type": "string"
					},
					"type": {
						"$ref": "#/components/schemas/CloudDatabaseType"
					},
					"verified": {
						"type": "boolean"
					},
					"provider": {
						"type": "string"
					},
					"user": {
						"type": "string"
					},
					"url": {
						"type": "string"
					},
					"pass": {
						"type": "string"
					},
					"port": {
						"type": "number",
						"format": "double"
					},
					"authDb": {
						"type": "string"
					},
					"autoBackup": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ICronjob"
							}
						],
						"description": "Cronjob ID"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ICloudDatabase.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ICloudDatabase.Exclude_keyofICloudDatabase.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"CronjobRequest": {
				"properties": {
					"body": {},
					"headers": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"params": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"method": {
						"$ref": "#/components/schemas/RequestMethodType"
					},
					"url": {
						"type": "string"
					}
				},
				"type": "object"
			},
			"Pick_ICloudDatabaseBackup.Exclude_keyofICloudDatabaseBackup.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"type": {
						"$ref": "#/components/schemas/CloudDatabaseType"
					},
					"status": {
						"$ref": "#/components/schemas/BackupStatus"
					},
					"database": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						]
					},
					"url": {
						"type": "string",
						"description": "Backup file URL"
					},
					"path": {
						"type": "string",
						"description": "Backup file path"
					},
					"dbSlug": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ICloudDatabaseBackup.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ICloudDatabaseBackup.Exclude_keyofICloudDatabaseBackup.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"CloudDatabaseBackupDto": {
				"$ref": "#/components/schemas/Omit_ICloudDatabaseBackup.keyofHiddenBodyKeys_"
			},
			"InputOptions": {
				"properties": {
					"message": {
						"type": "string",
						"description": "Used in request build/deployment\n- Flag: `-m`, `--message`",
						"example": "v1.0.0"
					},
					"prodDomains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"deprecated": true
					},
					"stagingDomains": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"deprecated": true
					},
					"outputPath": {
						"description": "Output path (include directory path + file name).",
						"example": "/path/to/output.file",
						"default": "\"string\""
					},
					"outputName": {
						"description": "Output file name.",
						"example": "output.txt",
						"default": "\"string\""
					},
					"outputDir": {
						"description": "Output directory location.",
						"example": "/path/to/output/",
						"default": "\"string\""
					},
					"output": {
						"type": "string",
						"description": "Flag: `-o`, `--output`",
						"default": "\"string\""
					},
					"providerProject": {
						"type": "string",
						"description": "`PROJECT_ID` trên provider (GCP hoặc DO)"
					},
					"gitBranch": {
						"type": "string",
						"description": "Specify a git branch\n- Flags: `--branch`, `--git-branch`"
					},
					"gitOrg": {
						"type": "string",
						"description": "A slug of git workspace\n- Flag: `--org`, `--git-org`"
					},
					"gitProvider": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "Git provider type\n- Flag: `--gp`, `--git-provider`"
					},
					"git": {
						"$ref": "#/components/schemas/IGitProvider",
						"description": "Git provider\n- Flag: `--git`"
					},
					"registry": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"type": "boolean"
							}
						],
						"description": "Container Registry's slug\n- Flag: `-r`, `--registry`"
					},
					"provider": {
						"type": "string",
						"description": "Cloud provider\n- Flag: `--provider`, `--pro`",
						"default": "\"custom\""
					},
					"region": {
						"type": "string",
						"description": "[GOOGLE CLOUD] Specify a region of your cluster"
					},
					"zone": {
						"type": "string",
						"description": "[GOOGLE CLOUD] Specify a zone of your cluster"
					},
					"cluster": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"type": "boolean"
							}
						],
						"description": "Cluster's slug. For deploy to specific cluster.\n- Flags: `--cluster`"
					},
					"appSlug": {
						"type": "string",
						"description": "Slug of an {App} instance\n- Flags: `--appSlug`"
					},
					"appId": {
						"type": "string",
						"description": "ID of an {App} instance"
					},
					"app": {
						"$ref": "#/components/schemas/IApp",
						"description": "Specify an {App} instance"
					},
					"size": {
						"$ref": "#/components/schemas/ResourceQuotaSize",
						"description": "- Flags: `--size`"
					},
					"buildId": {
						"type": "string"
					},
					"imageURL": {
						"type": "string",
						"description": "- Flags: `--image`"
					},
					"buildImage": {
						"type": "string",
						"description": "Build image"
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag"
					},
					"buildDir": {
						"type": "string",
						"description": "Build directory"
					},
					"redirect": {
						"type": "boolean",
						"description": "- Flags: `--redirect`",
						"default": "false"
					},
					"isPublic": {
						"type": "boolean",
						"description": "Git repository access policy, default is PRIVATE.\n- Flags: `--public`",
						"default": "false"
					},
					"printSuccess": {
						"type": "boolean",
						"default": "false"
					},
					"domain": {
						"anyOf": [
							{
								"type": "boolean"
							},
							{
								"type": "string"
							}
						],
						"description": "Application's domain\n- Flags: `--domain`",
						"example": "myapp.example.com"
					},
					"namespace": {
						"type": "string",
						"description": "Kubernetes namespace\n- Flags: `--namespace`"
					},
					"projectName": {
						"type": "string",
						"description": "{Project} name\n- Flags: `--projectName`"
					},
					"projectSlug": {
						"type": "string",
						"description": "{Project} slug\n- Flags: `--projectSlug`"
					},
					"projectId": {
						"type": "string",
						"description": "ID of the {Project}\n- [WARN] This is NOT a {PROJECT_ID} of Google Cloud platform!"
					},
					"project": {
						"$ref": "#/components/schemas/IProject",
						"description": "Project"
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "- Flags: `--replicas`"
					},
					"port": {
						"type": "number",
						"format": "double",
						"description": "- Flags: `--port`"
					},
					"deployYaml": {
						"type": "string",
						"description": "Content of the deployment yaml (Namespace, Ingress, Service, Deploy,...)"
					},
					"shouldUseFreshDeploy": {
						"type": "boolean",
						"description": "! Should deploy app from a fresh namespace\n- Flags: `--fresh`\n## [WARNING]\n- **With this flag enabled, the server will wipe out all current deployments within the target namespace, then deploy your app completely from scratch!**\n- Use at your own risk, make sure you understand what you're doing, double check the namespace before deploying to avoid accidently take down other apps."
					},
					"shouldRollOut": {
						"type": "boolean",
						"description": "Should roll out release (skip `prerelease` environment)\n- Flags: `--rollout`",
						"default": "false"
					},
					"shouldApply": {
						"type": "boolean",
						"description": "Should apply something\n- Flags: `--apply`"
					},
					"shouldCreate": {
						"type": "boolean",
						"description": "Should create something\n- Flags: `--create`",
						"default": "false"
					},
					"shouldEnableCDN": {
						"type": "boolean",
						"description": "[Use when deploying an app] Should enable CDN for this app\n- Flags: `--cdn`",
						"default": "false"
					},
					"shouldUploadDotenv": {
						"type": "boolean",
						"description": "[Use when deploying an app] Force upload local DOTENV file to deployed environment.\n- Flags: `--upload-env`",
						"default": "false"
					},
					"shouldClose": {
						"type": "boolean",
						"description": "- Flags: `--close`",
						"default": "true"
					},
					"shouldInstallPackage": {
						"type": "boolean",
						"description": "Should install NPM packages locally after creating new project",
						"default": "true"
					},
					"shouldUpdatePipeline": {
						"type": "boolean",
						"deprecated": true
					},
					"shouldInherit": {
						"type": "boolean",
						"description": "- Flags: `--inherit`",
						"default": "true"
					},
					"shouldMerge": {
						"type": "boolean",
						"description": "- Flags: `--merge`",
						"default": "false"
					},
					"shouldUseTemplate": {
						"type": "boolean",
						"description": "- Flags: `--template`",
						"default": "false"
					},
					"shouldGenerate": {
						"type": "boolean",
						"default": "false"
					},
					"shouldCompress": {
						"type": "boolean",
						"default": "false"
					},
					"shouldUseGit": {
						"type": "boolean",
						"default": "true",
						"deprecated": true
					},
					"shouldUpdateCli": {
						"type": "boolean",
						"description": "- Flags: `--update`, `-U`\nShould update CLI version before running the command",
						"default": "false"
					},
					"shouldShowVersion": {
						"type": "boolean",
						"description": "- Flags: `--version`, `-v`",
						"default": "false"
					},
					"shouldShowHelp": {
						"type": "boolean",
						"description": "- Flags: `--help`, `-h`",
						"default": "false"
					},
					"shouldShowInputOptions": {
						"type": "boolean",
						"default": "false\nShould show input options while executing the command [for DEBUGGING]"
					},
					"skipCreatingDirectory": {
						"type": "boolean",
						"description": "Should skip creating new directory while creating project",
						"default": "false"
					},
					"healthz": {
						"type": "string",
						"nullable": true,
						"description": "- Flags: `--healthz` (default \"/\"), `--no-healthz`, `--healthz=/custom/path`",
						"default": "\"/\""
					},
					"ssl": {
						"type": "boolean",
						"description": "- Flags: `--ssl`, `--no-ssl`",
						"default": "true"
					},
					"optimize": {
						"type": "boolean",
						"description": "Should compress the files"
					},
					"isCanary": {
						"type": "boolean",
						"description": "- Flags: `--canary`",
						"default": "false"
					},
					"production": {
						"type": "boolean"
					},
					"isProd": {
						"type": "boolean",
						"description": "- Flags: `--prod`",
						"default": "false"
					},
					"isStaging": {
						"type": "boolean",
						"description": "- Flags: `--staging`",
						"default": "false"
					},
					"isDev": {
						"type": "boolean",
						"description": "- Flags: `--dev`",
						"default": "true"
					},
					"envs": {
						"items": {
							"anyOf": [
								{
									"type": "string"
								},
								{
									"type": "string",
									"enum": [
										"dev",
										"prod",
										"staging"
									]
								}
							]
						},
						"type": "array",
						"description": "List of deploy environment codes",
						"default": "[\"dev\"]"
					},
					"env": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"type": "string",
								"enum": [
									"dev",
									"prod",
									"staging"
								]
							}
						],
						"description": "Specify environment code:\n- One of: `dev, prod, staging,...`\n- Flags: `--env`",
						"default": "\"dev\""
					},
					"fifthAction": {
						"type": "string",
						"description": "DX command's action level 5"
					},
					"fourAction": {
						"type": "string",
						"description": "DX command's action level 4"
					},
					"thirdAction": {
						"type": "string",
						"description": "DX command's action level 3"
					},
					"secondAction": {
						"type": "string",
						"description": "DX command's action level 2"
					},
					"action": {
						"type": "string",
						"description": "DX command's action level 1"
					},
					"overwrite": {
						"type": "boolean",
						"description": "- Flags: `--force`, `--overwrite`",
						"default": "false"
					},
					"frameworkVersion": {
						"type": "string",
						"description": "Version of the framework"
					},
					"framework": {
						"$ref": "#/components/schemas/IFramework",
						"description": "Framework"
					},
					"SOCKET_ROOM": {
						"type": "string"
					},
					"repoSlug": {
						"type": "string",
						"description": "Git repo slug"
					},
					"repoSSH": {
						"type": "string",
						"description": "Git repo SSH url"
					},
					"repoURL": {
						"type": "string",
						"description": "Git repo URL"
					},
					"targetDirectory": {
						"type": "string",
						"description": "Location where the CLI command point to.\n- Flags: `--dir`, `--targetDir`"
					},
					"host": {
						"type": "string",
						"description": "- Flags: `--host`"
					},
					"url": {
						"type": "string",
						"description": "- Flags: `--url`"
					},
					"path": {
						"type": "string",
						"description": "- Flags: `--path`"
					},
					"filePath": {
						"type": "string",
						"description": "Flag: `-f`, `--file`"
					},
					"value": {
						"type": "string",
						"description": "Flag: `--val`, `--value`"
					},
					"key": {
						"type": "string",
						"description": "Flag: `--key`, `--token`"
					},
					"apiToken": {
						"type": "string",
						"description": "API access token\n- Flag: `--api-key`, `--api-token`"
					},
					"refreshToken": {
						"type": "string",
						"description": "User refresh token"
					},
					"token": {
						"type": "string",
						"description": "User access token\nFlag: `--token`"
					},
					"data": {
						"type": "string"
					},
					"input": {
						"type": "string",
						"description": "Flag: `-i`, `--input`"
					},
					"slug": {
						"type": "string",
						"description": "{App} slug\n- Flags: `--slug`"
					},
					"name": {
						"type": "string",
						"description": "User input name\n- Flags: `--name`"
					},
					"auth": {
						"type": "string",
						"description": "Auth input name\n- Flags: `--auth`"
					},
					"server": {
						"type": "string",
						"description": "User input server\n- Flags: `--server`"
					},
					"email": {
						"type": "string",
						"description": "User input email\n- Flags: `--email`"
					},
					"pass": {
						"type": "string",
						"description": "User input password\n- Flags: `--pass`"
					},
					"user": {
						"type": "string",
						"description": "User input username\n- Flags: `--user`"
					},
					"org": {
						"type": "string",
						"description": "User input organization. Used in:\n- Container registry commands\n- Git provider commands"
					},
					"workspaceId": {
						"type": "string"
					},
					"workspace": {
						"$ref": "#/components/schemas/IWorkspace"
					},
					"userId": {
						"type": "string"
					},
					"username": {
						"type": "string"
					},
					"author": {
						"$ref": "#/components/schemas/IUser",
						"description": "Ownership"
					},
					"version": {
						"type": "string",
						"description": "Version string\n- Flags: `--version`, `-v`"
					},
					"isLocal": {
						"type": "boolean",
						"description": "Define if the command was executed on local machine or server machine\n- Flags: `--local`"
					},
					"ci": {
						"type": "boolean",
						"description": "Continuous integration (CI) flag\n- Flag: `--ci`, `--no-ci`",
						"default": "false"
					},
					"statistics": {
						"properties": {
							"endTime": {
								"type": "string",
								"format": "date-time"
							},
							"startTime": {
								"type": "string",
								"format": "date-time"
							},
							"author": {
								"type": "string"
							}
						},
						"type": "object",
						"description": "Tracking information"
					},
					"isTail": {
						"type": "boolean",
						"description": "Follow the output logs until the command is finished.\n- Flags: `--tail`"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "For testing purpose\n- Flags: `--debug`"
					}
				},
				"type": "object",
				"description": "Các giá trị đầu vào của CLI"
			},
			"StartBuildParams": {
				"properties": {
					"message": {
						"type": "string",
						"description": "Revision message"
					},
					"shouldDeploy": {
						"type": "boolean",
						"description": "If `TRUE`, skip trigger webhook notification & process deploy this build",
						"default": "false"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "Enable debug mode",
						"default": "false"
					},
					"serverLocation": {
						"type": "string",
						"description": "Current DXUP server location"
					},
					"serverVersion": {
						"type": "string",
						"description": "Current DXUP server version"
					},
					"cliVersion": {
						"type": "string",
						"description": "CLI version of client user"
					},
					"args": {
						"items": {
							"properties": {
								"value": {
									"type": "string"
								},
								"name": {
									"type": "string"
								}
							},
							"required": [
								"value",
								"name"
							],
							"type": "object"
						},
						"type": "array",
						"description": "Build arguments"
					},
					"platforms": {
						"items": {
							"$ref": "#/components/schemas/BuildPlatform"
						},
						"type": "array",
						"description": "Targeted platform arch: linux/arm64, linux/amd64,..."
					},
					"buildWatch": {
						"type": "boolean",
						"description": "Enable async to watch the build process",
						"default": "true"
					},
					"buildDir": {
						"type": "string",
						"description": "Path to the source code directory\n* [OPTIONAL] Only apply for CLI command, has no effects on API call"
					},
					"env": {
						"type": "string",
						"description": "Select the deploy environment to build image, in this case, this info is using for selecting \"Dockerfile\"\nof specific deploy environment only, for example: \"Dockerfile.dev\" or \"Dockerfile.prod\",\nif you don't specify \"env\", a default \"Dockerfile\" will be selected.\n- **[OPTIONAL] SHOULD NOT rely on this!**\n- A build should be able to used for any deploy environments."
					},
					"registrySlug": {
						"type": "string",
						"description": "Slug of the Container Registry"
					},
					"user": {
						"$ref": "#/components/schemas/IUser",
						"description": "{User} instance of the author\n- `If passing \"user\", no need to pass \"userId\" and vice versa.`"
					},
					"userId": {
						"type": "string",
						"description": "ID of the author\n- `If passing \"userId\", no need to pass \"user\" and vice versa.`"
					},
					"buildNumber": {
						"type": "number",
						"format": "double",
						"description": "An incremental number of build"
					},
					"buildTag": {
						"type": "string",
						"description": "Build tag is also an container image's tag"
					},
					"gitBranch": {
						"type": "string",
						"description": "Select a git branch to pull source code & build"
					},
					"appSlug": {
						"type": "string",
						"description": "App's slug"
					}
				},
				"required": [
					"registrySlug",
					"gitBranch",
					"appSlug"
				],
				"type": "object"
			},
			"DeployBuildParams": {
				"properties": {
					"healthzPath": {
						"type": "string",
						"nullable": true,
						"description": "Health check path",
						"default": "\"/\""
					},
					"deployInBackground": {
						"type": "boolean",
						"description": "### WARNING\nSkip watching the progress of deployment, let it run in background, won't return the deployment's status.",
						"default": "true"
					},
					"skipReadyCheck": {
						"type": "boolean",
						"description": "### WARNING\nSkip checking deployed POD's ready status.\n- The response status will always be SUCCESS even if the pod is unable to start up properly.",
						"default": "false"
					},
					"forceRollOut": {
						"type": "boolean",
						"description": "### FOR DEPLOY to PROD\nForce roll out the release to \"prod\" deploy environment (instead of \"prerelease\" environment)",
						"default": "false"
					},
					"shouldUseFreshDeploy": {
						"type": "boolean",
						"description": "[DANGER]\n---\nShould delete old deployment and deploy a new one from scratch",
						"default": "false"
					},
					"author": {
						"type": "string",
						"description": "User ID of the author"
					},
					"registry": {
						"type": "string",
						"description": "`[OPTIONAL]` - Container registry's slug"
					},
					"cluster": {
						"type": "string",
						"description": "`[OPTIONAL]` - Cluster's slug"
					},
					"env": {
						"type": "string",
						"description": "Deploy environment"
					}
				},
				"required": [
					"env"
				],
				"type": "object"
			},
			"IRelease": {
				"properties": {
					"_id": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"metadata": {},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"createdAt": {
						"type": "string",
						"format": "date-time",
						"description": "Created date"
					},
					"deletedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Deleted date"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Updated date"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"buildTag": {
						"type": "string"
					},
					"buildNumber": {
						"type": "number",
						"format": "double"
					},
					"cliVersion": {
						"type": "string"
					},
					"appVersion": {
						"type": "string"
					},
					"env": {
						"type": "string",
						"description": "Targeted environment."
					},
					"envVars": {
						"items": {
							"$ref": "#/components/schemas/KubeEnvironmentVariable"
						},
						"type": "array",
						"description": "Environment variables"
					},
					"prereleaseEnvironment": {
						"anyOf": [
							{
								"items": {},
								"type": "array"
							},
							{
								"type": "string"
							}
						],
						"description": "ONLY PRE-RELEASE - Environment variables"
					},
					"diginext": {
						"deprecated": true
					},
					"appConfig": {
						"$ref": "#/components/schemas/AppConfig"
					},
					"namespace": {
						"type": "string"
					},
					"prodYaml": {
						"type": "string",
						"deprecated": true
					},
					"preYaml": {
						"type": "string"
					},
					"prereleaseUrl": {
						"type": "string"
					},
					"productionUrl": {
						"type": "string"
					},
					"deploymentYaml": {
						"type": "string"
					},
					"endpoint": {
						"type": "string"
					},
					"createdBy": {
						"type": "string"
					},
					"branch": {
						"type": "string"
					},
					"provider": {
						"type": "string"
					},
					"cluster": {
						"type": "string",
						"description": "Cluster's slug"
					},
					"projectSlug": {
						"type": "string"
					},
					"appSlug": {
						"type": "string"
					},
					"providerProjectId": {
						"type": "string"
					},
					"buildStatus": {
						"$ref": "#/components/schemas/BuildStatus"
					},
					"status": {
						"$ref": "#/components/schemas/DeployStatus"
					},
					"message": {
						"type": "string",
						"description": "Release revision message"
					},
					"startTime": {
						"type": "string",
						"format": "date-time",
						"description": "Deploy start time"
					},
					"endTime": {
						"type": "string",
						"format": "date-time",
						"description": "Deploy end time"
					},
					"duration": {
						"type": "number",
						"format": "double",
						"description": "Deploy duration in miliseconds"
					},
					"screenshot": {
						"type": "string",
						"description": "URL of the webpage screenshot"
					},
					"build": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IBuild"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the build"
					},
					"app": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IApp"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the app"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"KubeNamespace": {
				"properties": {
					"apiVersion": {
						"type": "string"
					},
					"kind": {
						"type": "string",
						"enum": [
							"Namespace"
						],
						"nullable": false
					},
					"metadata": {
						"properties": {
							"creationTimestamp": {
								"type": "string"
							},
							"labels": {
								"properties": {},
								"additionalProperties": {
									"type": "string"
								},
								"type": "object"
							},
							"namespace": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"required": [
							"labels"
						],
						"type": "object"
					},
					"spec": {
						"properties": {
							"finalizers": {
								"items": {
									"type": "string"
								},
								"type": "array"
							}
						},
						"type": "object"
					},
					"status": {
						"properties": {
							"phase": {
								"type": "string"
							}
						},
						"type": "object"
					},
					"clusterSlug": {
						"type": "string"
					},
					"clusterShortName": {
						"type": "string",
						"description": "Cluster's short name",
						"deprecated": true
					},
					"cluster": {
						"type": "string",
						"description": "Cluster ID"
					},
					"workspace": {
						"type": "string",
						"description": "Workspace ID"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ManagedFieldsEntry": {
				"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
				"properties": {
					"apiVersion": {
						"type": "string",
						"description": "APIVersion defines the version of this resource that this field set applies to. The format is \\\"group/version\\\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted."
					},
					"fieldsType": {
						"type": "string",
						"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \\\"FieldsV1\\\""
					},
					"fieldsV1": {
						"additionalProperties": false,
						"type": "object",
						"description": "FieldsV1 holds the first JSON version format as described in the \\\"FieldsV1\\\" type."
					},
					"manager": {
						"type": "string",
						"description": "Manager is an identifier of the workflow managing these fields."
					},
					"operation": {
						"type": "string",
						"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are \\'Apply\\' and \\'Update\\'."
					},
					"subresource": {
						"type": "string",
						"description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource."
					},
					"time": {
						"type": "string",
						"format": "date-time",
						"description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1OwnerReference": {
				"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
				"properties": {
					"apiVersion": {
						"type": "string",
						"description": "API version of the referent."
					},
					"blockOwnerDeletion": {
						"type": "boolean",
						"description": "If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \\\"delete\\\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned."
					},
					"controller": {
						"type": "boolean",
						"description": "If true, this reference points to the managing controller."
					},
					"kind": {
						"type": "string",
						"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names"
					},
					"uid": {
						"type": "string",
						"description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids"
					}
				},
				"required": [
					"apiVersion",
					"kind",
					"name",
					"uid"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ObjectMeta": {
				"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
				"properties": {
					"annotations": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations"
					},
					"creationTimestamp": {
						"type": "string",
						"format": "date-time",
						"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.  Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
					},
					"deletionGracePeriodSeconds": {
						"type": "number",
						"format": "double",
						"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only."
					},
					"deletionTimestamp": {
						"type": "string",
						"format": "date-time",
						"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.  Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
					},
					"finalizers": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list."
					},
					"generateName": {
						"type": "string",
						"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.  If this field is specified and the generated name exists, the server will return a 409.  Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency"
					},
					"generation": {
						"type": "number",
						"format": "double",
						"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only."
					},
					"labels": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels"
					},
					"managedFields": {
						"items": {
							"$ref": "#/components/schemas/V1ManagedFieldsEntry"
						},
						"type": "array",
						"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn\\'t need to set or understand this field. A workflow can be the user\\'s name, a controller\\'s name, or the name of a specific apply path like \\\"ci-cd\\\". The set of fields is always in the version that the workflow used when modifying the object."
					},
					"name": {
						"type": "string",
						"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names"
					},
					"namespace": {
						"type": "string",
						"description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.  Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces"
					},
					"ownerReferences": {
						"items": {
							"$ref": "#/components/schemas/V1OwnerReference"
						},
						"type": "array",
						"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller."
					},
					"resourceVersion": {
						"type": "string",
						"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.  Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency"
					},
					"selfLink": {
						"type": "string",
						"description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system."
					},
					"uid": {
						"type": "string",
						"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.  Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1LabelSelectorRequirement": {
				"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
				"properties": {
					"key": {
						"type": "string",
						"description": "key is the label key that the selector applies to."
					},
					"operator": {
						"type": "string",
						"description": "operator represents a key\\'s relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist."
					},
					"values": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch."
					}
				},
				"required": [
					"key",
					"operator"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1LabelSelector": {
				"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
				"properties": {
					"matchExpressions": {
						"items": {
							"$ref": "#/components/schemas/V1LabelSelectorRequirement"
						},
						"type": "array",
						"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed."
					},
					"matchLabels": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IntOrString": {
				"anyOf": [
					{
						"type": "number",
						"format": "double"
					},
					{
						"type": "string"
					}
				]
			},
			"V1RollingUpdateDeployment": {
				"description": "Spec to control the desired behavior of rolling update.",
				"properties": {
					"maxSurge": {
						"$ref": "#/components/schemas/IntOrString",
						"description": "IntOrString is a type that can hold an int32 or a string.  When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type.  This allows you to have, for example, a JSON field that can accept a name or number."
					},
					"maxUnavailable": {
						"$ref": "#/components/schemas/IntOrString",
						"description": "IntOrString is a type that can hold an int32 or a string.  When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type.  This allows you to have, for example, a JSON field that can accept a name or number."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1DeploymentStrategy": {
				"description": "DeploymentStrategy describes how to replace existing pods with new ones.",
				"properties": {
					"rollingUpdate": {
						"$ref": "#/components/schemas/V1RollingUpdateDeployment"
					},
					"type": {
						"type": "string",
						"description": "Type of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1NodeSelectorRequirement": {
				"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
				"properties": {
					"key": {
						"type": "string",
						"description": "The label key that the selector applies to."
					},
					"operator": {
						"type": "string",
						"description": "Represents a key\\'s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt."
					},
					"values": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch."
					}
				},
				"required": [
					"key",
					"operator"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1NodeSelectorTerm": {
				"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
				"properties": {
					"matchExpressions": {
						"items": {
							"$ref": "#/components/schemas/V1NodeSelectorRequirement"
						},
						"type": "array",
						"description": "A list of node selector requirements by node\\'s labels."
					},
					"matchFields": {
						"items": {
							"$ref": "#/components/schemas/V1NodeSelectorRequirement"
						},
						"type": "array",
						"description": "A list of node selector requirements by node\\'s fields."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PreferredSchedulingTerm": {
				"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it\\'s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
				"properties": {
					"preference": {
						"$ref": "#/components/schemas/V1NodeSelectorTerm"
					},
					"weight": {
						"type": "number",
						"format": "double",
						"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100."
					}
				},
				"required": [
					"preference",
					"weight"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1NodeSelector": {
				"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
				"properties": {
					"nodeSelectorTerms": {
						"items": {
							"$ref": "#/components/schemas/V1NodeSelectorTerm"
						},
						"type": "array",
						"description": "Required. A list of node selector terms. The terms are ORed."
					}
				},
				"required": [
					"nodeSelectorTerms"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1NodeAffinity": {
				"description": "Node affinity is a group of node affinity scheduling rules.",
				"properties": {
					"preferredDuringSchedulingIgnoredDuringExecution": {
						"items": {
							"$ref": "#/components/schemas/V1PreferredSchedulingTerm"
						},
						"type": "array",
						"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred."
					},
					"requiredDuringSchedulingIgnoredDuringExecution": {
						"$ref": "#/components/schemas/V1NodeSelector"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PodAffinityTerm": {
				"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
				"properties": {
					"labelSelector": {
						"$ref": "#/components/schemas/V1LabelSelector"
					},
					"namespaceSelector": {
						"$ref": "#/components/schemas/V1LabelSelector"
					},
					"namespaces": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod\\'s namespace\\\"."
					},
					"topologyKey": {
						"type": "string",
						"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed."
					}
				},
				"required": [
					"topologyKey"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1WeightedPodAffinityTerm": {
				"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
				"properties": {
					"podAffinityTerm": {
						"$ref": "#/components/schemas/V1PodAffinityTerm"
					},
					"weight": {
						"type": "number",
						"format": "double",
						"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100."
					}
				},
				"required": [
					"podAffinityTerm",
					"weight"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodAffinity": {
				"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
				"properties": {
					"preferredDuringSchedulingIgnoredDuringExecution": {
						"items": {
							"$ref": "#/components/schemas/V1WeightedPodAffinityTerm"
						},
						"type": "array",
						"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred."
					},
					"requiredDuringSchedulingIgnoredDuringExecution": {
						"items": {
							"$ref": "#/components/schemas/V1PodAffinityTerm"
						},
						"type": "array",
						"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PodAntiAffinity": {
				"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
				"properties": {
					"preferredDuringSchedulingIgnoredDuringExecution": {
						"items": {
							"$ref": "#/components/schemas/V1WeightedPodAffinityTerm"
						},
						"type": "array",
						"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred."
					},
					"requiredDuringSchedulingIgnoredDuringExecution": {
						"items": {
							"$ref": "#/components/schemas/V1PodAffinityTerm"
						},
						"type": "array",
						"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1Affinity": {
				"description": "Affinity is a group of affinity scheduling rules.",
				"properties": {
					"nodeAffinity": {
						"$ref": "#/components/schemas/V1NodeAffinity"
					},
					"podAffinity": {
						"$ref": "#/components/schemas/V1PodAffinity"
					},
					"podAntiAffinity": {
						"$ref": "#/components/schemas/V1PodAntiAffinity"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ConfigMapKeySelector": {
				"description": "Selects a key from a ConfigMap.",
				"properties": {
					"key": {
						"type": "string",
						"description": "The key to select."
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "Specify whether the ConfigMap or its key must be defined"
					}
				},
				"required": [
					"key"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ObjectFieldSelector": {
				"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
				"properties": {
					"apiVersion": {
						"type": "string",
						"description": "Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\"."
					},
					"fieldPath": {
						"type": "string",
						"description": "Path of the field to select in the specified API version."
					}
				},
				"required": [
					"fieldPath"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ResourceFieldSelector": {
				"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
				"properties": {
					"containerName": {
						"type": "string",
						"description": "Container name: required for volumes, optional for env vars"
					},
					"divisor": {
						"type": "string",
						"description": "Specifies the output format of the exposed resources, defaults to \\\"1\\\""
					},
					"resource": {
						"type": "string",
						"description": "Required: resource to select"
					}
				},
				"required": [
					"resource"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1SecretKeySelector": {
				"description": "SecretKeySelector selects a key of a Secret.",
				"properties": {
					"key": {
						"type": "string",
						"description": "The key of the secret to select from.  Must be a valid secret key."
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "Specify whether the Secret or its key must be defined"
					}
				},
				"required": [
					"key"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1EnvVarSource": {
				"description": "EnvVarSource represents a source for the value of an EnvVar.",
				"properties": {
					"configMapKeyRef": {
						"$ref": "#/components/schemas/V1ConfigMapKeySelector"
					},
					"fieldRef": {
						"$ref": "#/components/schemas/V1ObjectFieldSelector"
					},
					"resourceFieldRef": {
						"$ref": "#/components/schemas/V1ResourceFieldSelector"
					},
					"secretKeyRef": {
						"$ref": "#/components/schemas/V1SecretKeySelector"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1EnvVar": {
				"description": "EnvVar represents an environment variable present in a Container.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the environment variable. Must be a C_IDENTIFIER."
					},
					"value": {
						"type": "string",
						"description": "Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\"."
					},
					"valueFrom": {
						"$ref": "#/components/schemas/V1EnvVarSource"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ConfigMapEnvSource": {
				"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.  The contents of the target ConfigMap\\'s Data field will represent the key-value pairs as environment variables.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "Specify whether the ConfigMap must be defined"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1SecretEnvSource": {
				"description": "SecretEnvSource selects a Secret to populate the environment variables with.  The contents of the target Secret\\'s Data field will represent the key-value pairs as environment variables.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "Specify whether the Secret must be defined"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1EnvFromSource": {
				"description": "EnvFromSource represents the source of a set of ConfigMaps",
				"properties": {
					"configMapRef": {
						"$ref": "#/components/schemas/V1ConfigMapEnvSource"
					},
					"prefix": {
						"type": "string",
						"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER."
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1SecretEnvSource"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ExecAction": {
				"description": "ExecAction describes a \\\"run in container\\\" action.",
				"properties": {
					"command": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Command is the command line to execute inside the container, the working directory for the command  is root (\\'/\\') in the container\\'s filesystem. The command is simply exec\\'d, it is not run inside a shell, so traditional shell instructions (\\'|\\', etc) won\\'t work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1HTTPHeader": {
				"description": "HTTPHeader describes a custom header to be used in HTTP probes",
				"properties": {
					"name": {
						"type": "string",
						"description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header."
					},
					"value": {
						"type": "string",
						"description": "The header field value"
					}
				},
				"required": [
					"name",
					"value"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1HTTPGetAction": {
				"description": "HTTPGetAction describes an action based on HTTP Get requests.",
				"properties": {
					"host": {
						"type": "string",
						"description": "Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead."
					},
					"httpHeaders": {
						"items": {
							"$ref": "#/components/schemas/V1HTTPHeader"
						},
						"type": "array",
						"description": "Custom headers to set in the request. HTTP allows repeated headers."
					},
					"path": {
						"type": "string",
						"description": "Path to access on the HTTP server."
					},
					"port": {
						"$ref": "#/components/schemas/IntOrString",
						"description": "IntOrString is a type that can hold an int32 or a string.  When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type.  This allows you to have, for example, a JSON field that can accept a name or number."
					},
					"scheme": {
						"type": "string",
						"description": "Scheme to use for connecting to the host. Defaults to HTTP."
					}
				},
				"required": [
					"port"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1TCPSocketAction": {
				"description": "TCPSocketAction describes an action based on opening a socket",
				"properties": {
					"host": {
						"type": "string",
						"description": "Optional: Host name to connect to, defaults to the pod IP."
					},
					"port": {
						"$ref": "#/components/schemas/IntOrString",
						"description": "IntOrString is a type that can hold an int32 or a string.  When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type.  This allows you to have, for example, a JSON field that can accept a name or number."
					}
				},
				"required": [
					"port"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1LifecycleHandler": {
				"description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.",
				"properties": {
					"exec": {
						"$ref": "#/components/schemas/V1ExecAction"
					},
					"httpGet": {
						"$ref": "#/components/schemas/V1HTTPGetAction"
					},
					"tcpSocket": {
						"$ref": "#/components/schemas/V1TCPSocketAction"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1Lifecycle": {
				"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
				"properties": {
					"postStart": {
						"$ref": "#/components/schemas/V1LifecycleHandler"
					},
					"preStop": {
						"$ref": "#/components/schemas/V1LifecycleHandler"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1GRPCAction": {
				"description": "Kubernetes\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThe version of the OpenAPI document: release-1.28\n\n\nNOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\nhttps://openapi-generator.tech\nDo not edit the class manually.",
				"properties": {
					"port": {
						"type": "number",
						"format": "double",
						"description": "Port number of the gRPC service. Number must be in the range 1 to 65535."
					},
					"service": {
						"type": "string",
						"description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).  If this is not specified, the default behavior is defined by gRPC."
					}
				},
				"required": [
					"port"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1Probe": {
				"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
				"properties": {
					"exec": {
						"$ref": "#/components/schemas/V1ExecAction"
					},
					"failureThreshold": {
						"type": "number",
						"format": "double",
						"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1."
					},
					"grpc": {
						"$ref": "#/components/schemas/V1GRPCAction"
					},
					"httpGet": {
						"$ref": "#/components/schemas/V1HTTPGetAction"
					},
					"initialDelaySeconds": {
						"type": "number",
						"format": "double",
						"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
					},
					"periodSeconds": {
						"type": "number",
						"format": "double",
						"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1."
					},
					"successThreshold": {
						"type": "number",
						"format": "double",
						"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1."
					},
					"tcpSocket": {
						"$ref": "#/components/schemas/V1TCPSocketAction"
					},
					"terminationGracePeriodSeconds": {
						"type": "number",
						"format": "double",
						"description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod\\'s terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset."
					},
					"timeoutSeconds": {
						"type": "number",
						"format": "double",
						"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ContainerPort": {
				"description": "ContainerPort represents a network port in a single container.",
				"properties": {
					"containerPort": {
						"type": "number",
						"format": "double",
						"description": "Number of port to expose on the pod\\'s IP address. This must be a valid port number, 0 < x < 65536."
					},
					"hostIP": {
						"type": "string",
						"description": "What host IP to bind the external port to."
					},
					"hostPort": {
						"type": "number",
						"format": "double",
						"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this."
					},
					"name": {
						"type": "string",
						"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services."
					},
					"protocol": {
						"type": "string",
						"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\"."
					}
				},
				"required": [
					"containerPort"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ContainerResizePolicy": {
				"description": "ContainerResizePolicy represents resource resize policy for the container.",
				"properties": {
					"resourceName": {
						"type": "string",
						"description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory."
					},
					"restartPolicy": {
						"type": "string",
						"description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired."
					}
				},
				"required": [
					"resourceName",
					"restartPolicy"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ResourceClaim": {
				"description": "ResourceClaim references one entry in PodSpec.ResourceClaims.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container."
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ResourceRequirements": {
				"description": "ResourceRequirements describes the compute resource requirements.",
				"properties": {
					"claims": {
						"items": {
							"$ref": "#/components/schemas/V1ResourceClaim"
						},
						"type": "array",
						"description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.  This is an alpha field and requires enabling the DynamicResourceAllocation feature gate.  This field is immutable. It can only be set for containers."
					},
					"limits": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
					},
					"requests": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1Capabilities": {
				"description": "Adds and removes POSIX capabilities from running containers.",
				"properties": {
					"add": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Added capabilities"
					},
					"drop": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Removed capabilities"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1SELinuxOptions": {
				"description": "SELinuxOptions are the labels to be applied to the container",
				"properties": {
					"level": {
						"type": "string",
						"description": "Level is SELinux level label that applies to the container."
					},
					"role": {
						"type": "string",
						"description": "Role is a SELinux role label that applies to the container."
					},
					"type": {
						"type": "string",
						"description": "Type is a SELinux type label that applies to the container."
					},
					"user": {
						"type": "string",
						"description": "User is a SELinux user label that applies to the container."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1SeccompProfile": {
				"description": "SeccompProfile defines a pod/container\\'s seccomp profile settings. Only one profile source may be set.",
				"properties": {
					"localhostProfile": {
						"type": "string",
						"description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet\\'s configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type."
					},
					"type": {
						"type": "string",
						"description": "type indicates which kind of seccomp profile will be applied. Valid options are:  Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied."
					}
				},
				"required": [
					"type"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1WindowsSecurityContextOptions": {
				"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
				"properties": {
					"gmsaCredentialSpec": {
						"type": "string",
						"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field."
					},
					"gmsaCredentialSpecName": {
						"type": "string",
						"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use."
					},
					"hostProcess": {
						"type": "boolean",
						"description": "HostProcess determines if a container should be run as a \\'Host Process\\' container. All of a Pod\\'s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true."
					},
					"runAsUserName": {
						"type": "string",
						"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1SecurityContext": {
				"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext.  When both are set, the values in SecurityContext take precedence.",
				"properties": {
					"allowPrivilegeEscalation": {
						"type": "boolean",
						"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows."
					},
					"capabilities": {
						"$ref": "#/components/schemas/V1Capabilities"
					},
					"privileged": {
						"type": "boolean",
						"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows."
					},
					"procMount": {
						"type": "string",
						"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows."
					},
					"readOnlyRootFilesystem": {
						"type": "boolean",
						"description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows."
					},
					"runAsGroup": {
						"type": "number",
						"format": "double",
						"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows."
					},
					"runAsNonRoot": {
						"type": "boolean",
						"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
					},
					"runAsUser": {
						"type": "number",
						"format": "double",
						"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows."
					},
					"seLinuxOptions": {
						"$ref": "#/components/schemas/V1SELinuxOptions"
					},
					"seccompProfile": {
						"$ref": "#/components/schemas/V1SeccompProfile"
					},
					"windowsOptions": {
						"$ref": "#/components/schemas/V1WindowsSecurityContextOptions"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1VolumeDevice": {
				"description": "volumeDevice describes a mapping of a raw block device within a container.",
				"properties": {
					"devicePath": {
						"type": "string",
						"description": "devicePath is the path inside of the container that the device will be mapped to."
					},
					"name": {
						"type": "string",
						"description": "name must match the name of a persistentVolumeClaim in the pod"
					}
				},
				"required": [
					"devicePath",
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1VolumeMount": {
				"description": "VolumeMount describes a mounting of a Volume within a container.",
				"properties": {
					"mountPath": {
						"type": "string",
						"description": "Path within the container at which the volume should be mounted.  Must not contain \\':\\'."
					},
					"mountPropagation": {
						"type": "string",
						"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10."
					},
					"name": {
						"type": "string",
						"description": "This must match the Name of a Volume."
					},
					"readOnly": {
						"type": "boolean",
						"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false."
					},
					"subPath": {
						"type": "string",
						"description": "Path within the volume from which the container\\'s volume should be mounted. Defaults to \\\"\\\" (volume\\'s root)."
					},
					"subPathExpr": {
						"type": "string",
						"description": "Expanded path within the volume from which the container\\'s volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container\\'s environment. Defaults to \\\"\\\" (volume\\'s root). SubPathExpr and SubPath are mutually exclusive."
					}
				},
				"required": [
					"mountPath",
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1Container": {
				"description": "A single application container that you want to run within a pod.",
				"properties": {
					"args": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Arguments to the entrypoint. The container image\\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell"
					},
					"command": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Entrypoint array. Not executed within a shell. The container image\\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell"
					},
					"env": {
						"items": {
							"$ref": "#/components/schemas/V1EnvVar"
						},
						"type": "array",
						"description": "List of environment variables to set in the container. Cannot be updated."
					},
					"envFrom": {
						"items": {
							"$ref": "#/components/schemas/V1EnvFromSource"
						},
						"type": "array",
						"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated."
					},
					"image": {
						"type": "string",
						"description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets."
					},
					"imagePullPolicy": {
						"type": "string",
						"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images"
					},
					"lifecycle": {
						"$ref": "#/components/schemas/V1Lifecycle"
					},
					"livenessProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"name": {
						"type": "string",
						"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated."
					},
					"ports": {
						"items": {
							"$ref": "#/components/schemas/V1ContainerPort"
						},
						"type": "array",
						"description": "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated."
					},
					"readinessProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"resizePolicy": {
						"items": {
							"$ref": "#/components/schemas/V1ContainerResizePolicy"
						},
						"type": "array",
						"description": "Resources resize policy for the container."
					},
					"resources": {
						"$ref": "#/components/schemas/V1ResourceRequirements"
					},
					"restartPolicy": {
						"type": "string",
						"description": "RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \\\"Always\\\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod\\'s restart policy and the container type. Setting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \\\"Always\\\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \\\"sidecar\\\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed."
					},
					"securityContext": {
						"$ref": "#/components/schemas/V1SecurityContext"
					},
					"startupProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"stdin": {
						"type": "boolean",
						"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false."
					},
					"stdinOnce": {
						"type": "boolean",
						"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false"
					},
					"terminationMessagePath": {
						"type": "string",
						"description": "Optional: Path at which the file to which the container\\'s termination message will be written is mounted into the container\\'s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated."
					},
					"terminationMessagePolicy": {
						"type": "string",
						"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated."
					},
					"tty": {
						"type": "boolean",
						"description": "Whether this container should allocate a TTY for itself, also requires \\'stdin\\' to be true. Default is false."
					},
					"volumeDevices": {
						"items": {
							"$ref": "#/components/schemas/V1VolumeDevice"
						},
						"type": "array",
						"description": "volumeDevices is the list of block devices to be used by the container."
					},
					"volumeMounts": {
						"items": {
							"$ref": "#/components/schemas/V1VolumeMount"
						},
						"type": "array",
						"description": "Pod volumes to mount into the container\\'s filesystem. Cannot be updated."
					},
					"workingDir": {
						"type": "string",
						"description": "Container\\'s working directory. If not specified, the container runtime\\'s default will be used, which might be configured in the container image. Cannot be updated."
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodDNSConfigOption": {
				"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Required."
					},
					"value": {
						"type": "string"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PodDNSConfig": {
				"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
				"properties": {
					"nameservers": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed."
					},
					"options": {
						"items": {
							"$ref": "#/components/schemas/V1PodDNSConfigOption"
						},
						"type": "array",
						"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy."
					},
					"searches": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1EphemeralContainer": {
				"description": "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.  To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.",
				"properties": {
					"args": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Arguments to the entrypoint. The image\\'s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell"
					},
					"command": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Entrypoint array. Not executed within a shell. The image\\'s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container\\'s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell"
					},
					"env": {
						"items": {
							"$ref": "#/components/schemas/V1EnvVar"
						},
						"type": "array",
						"description": "List of environment variables to set in the container. Cannot be updated."
					},
					"envFrom": {
						"items": {
							"$ref": "#/components/schemas/V1EnvFromSource"
						},
						"type": "array",
						"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated."
					},
					"image": {
						"type": "string",
						"description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images"
					},
					"imagePullPolicy": {
						"type": "string",
						"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images"
					},
					"lifecycle": {
						"$ref": "#/components/schemas/V1Lifecycle"
					},
					"livenessProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"name": {
						"type": "string",
						"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers."
					},
					"ports": {
						"items": {
							"$ref": "#/components/schemas/V1ContainerPort"
						},
						"type": "array",
						"description": "Ports are not allowed for ephemeral containers."
					},
					"readinessProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"resizePolicy": {
						"items": {
							"$ref": "#/components/schemas/V1ContainerResizePolicy"
						},
						"type": "array",
						"description": "Resources resize policy for the container."
					},
					"resources": {
						"$ref": "#/components/schemas/V1ResourceRequirements"
					},
					"restartPolicy": {
						"type": "string",
						"description": "Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers."
					},
					"securityContext": {
						"$ref": "#/components/schemas/V1SecurityContext"
					},
					"startupProbe": {
						"$ref": "#/components/schemas/V1Probe"
					},
					"stdin": {
						"type": "boolean",
						"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false."
					},
					"stdinOnce": {
						"type": "boolean",
						"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false"
					},
					"targetContainerName": {
						"type": "string",
						"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.  The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined."
					},
					"terminationMessagePath": {
						"type": "string",
						"description": "Optional: Path at which the file to which the container\\'s termination message will be written is mounted into the container\\'s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated."
					},
					"terminationMessagePolicy": {
						"type": "string",
						"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated."
					},
					"tty": {
						"type": "boolean",
						"description": "Whether this container should allocate a TTY for itself, also requires \\'stdin\\' to be true. Default is false."
					},
					"volumeDevices": {
						"items": {
							"$ref": "#/components/schemas/V1VolumeDevice"
						},
						"type": "array",
						"description": "volumeDevices is the list of block devices to be used by the container."
					},
					"volumeMounts": {
						"items": {
							"$ref": "#/components/schemas/V1VolumeMount"
						},
						"type": "array",
						"description": "Pod volumes to mount into the container\\'s filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated."
					},
					"workingDir": {
						"type": "string",
						"description": "Container\\'s working directory. If not specified, the container runtime\\'s default will be used, which might be configured in the container image. Cannot be updated."
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1HostAlias": {
				"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod\\'s hosts file.",
				"properties": {
					"hostnames": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Hostnames for the above IP address."
					},
					"ip": {
						"type": "string",
						"description": "IP address of the host file entry."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1LocalObjectReference": {
				"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PodOS": {
				"description": "PodOS defines the OS parameters of a pod.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodReadinessGate": {
				"description": "PodReadinessGate contains the reference to a pod condition",
				"properties": {
					"conditionType": {
						"type": "string",
						"description": "ConditionType refers to a condition in the pod\\'s condition list with matching type."
					}
				},
				"required": [
					"conditionType"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ClaimSource": {
				"description": "ClaimSource describes a reference to a ResourceClaim.  Exactly one of these fields should be set.  Consumers of this type must treat an empty object as if it has an unknown value.",
				"properties": {
					"resourceClaimName": {
						"type": "string",
						"description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod."
					},
					"resourceClaimTemplateName": {
						"type": "string",
						"description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.  The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.  This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PodResourceClaim": {
				"description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL."
					},
					"source": {
						"$ref": "#/components/schemas/V1ClaimSource"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodSchedulingGate": {
				"description": "PodSchedulingGate is associated to a Pod to guard its scheduling.",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the scheduling gate. Each scheduling gate must have a unique name field."
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1Sysctl": {
				"description": "Sysctl defines a kernel parameter to be set",
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of a property to set"
					},
					"value": {
						"type": "string",
						"description": "Value of a property to set"
					}
				},
				"required": [
					"name",
					"value"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodSecurityContext": {
				"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext.  Field values of container.securityContext take precedence over field values of PodSecurityContext.",
				"properties": {
					"fsGroup": {
						"type": "number",
						"format": "double",
						"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:  1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR\\'d with rw-rw----  If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows."
					},
					"fsGroupChangePolicy": {
						"type": "string",
						"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows."
					},
					"runAsGroup": {
						"type": "number",
						"format": "double",
						"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows."
					},
					"runAsNonRoot": {
						"type": "boolean",
						"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
					},
					"runAsUser": {
						"type": "number",
						"format": "double",
						"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows."
					},
					"seLinuxOptions": {
						"$ref": "#/components/schemas/V1SELinuxOptions"
					},
					"seccompProfile": {
						"$ref": "#/components/schemas/V1SeccompProfile"
					},
					"supplementalGroups": {
						"items": {
							"type": "number",
							"format": "double"
						},
						"type": "array",
						"description": "A list of groups applied to the first process run in each container, in addition to the container\\'s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows."
					},
					"sysctls": {
						"items": {
							"$ref": "#/components/schemas/V1Sysctl"
						},
						"type": "array",
						"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows."
					},
					"windowsOptions": {
						"$ref": "#/components/schemas/V1WindowsSecurityContextOptions"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1Toleration": {
				"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
				"properties": {
					"effect": {
						"type": "string",
						"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute."
					},
					"key": {
						"type": "string",
						"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys."
					},
					"operator": {
						"type": "string",
						"description": "Operator represents a key\\'s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category."
					},
					"tolerationSeconds": {
						"type": "number",
						"format": "double",
						"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system."
					},
					"value": {
						"type": "string",
						"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1TopologySpreadConstraint": {
				"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
				"properties": {
					"labelSelector": {
						"$ref": "#/components/schemas/V1LabelSelector"
					},
					"matchLabelKeys": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn\\'t set. Keys that don\\'t exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.  This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)."
					},
					"maxSkew": {
						"type": "number",
						"format": "double",
						"description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It\\'s a required field. Default value is 1 and 0 is not allowed."
					},
					"minDomains": {
						"type": "number",
						"format": "double",
						"description": "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \\\"global minimum\\\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won\\'t schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.  For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so \\\"global minimum\\\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.  This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default)."
					},
					"nodeAffinityPolicy": {
						"type": "string",
						"description": "NodeAffinityPolicy indicates how we will treat Pod\\'s nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.  If this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag."
					},
					"nodeTaintsPolicy": {
						"type": "string",
						"description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.  If this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag."
					},
					"topologyKey": {
						"type": "string",
						"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \\\"kubernetes.io/hostname\\\", each Node is a domain of that topology. And, if TopologyKey is \\\"topology.kubernetes.io/zone\\\", each zone is a domain of that topology. It\\'s a required field."
					},
					"whenUnsatisfiable": {
						"type": "string",
						"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn\\'t satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,   but giving higher precedence to topologies that would help reduce the   skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assignment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won\\'t make it *more* imbalanced. It\\'s a required field."
					}
				},
				"required": [
					"maxSkew",
					"topologyKey",
					"whenUnsatisfiable"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1AWSElasticBlockStoreVolumeSource": {
				"description": "Represents a Persistent Disk resource in AWS.  An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
					},
					"partition": {
						"type": "number",
						"format": "double",
						"description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty)."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
					},
					"volumeID": {
						"type": "string",
						"description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
					}
				},
				"required": [
					"volumeID"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1AzureDiskVolumeSource": {
				"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
				"properties": {
					"cachingMode": {
						"type": "string",
						"description": "cachingMode is the Host Caching mode: None, Read Only, Read Write."
					},
					"diskName": {
						"type": "string",
						"description": "diskName is the Name of the data disk in the blob storage"
					},
					"diskURI": {
						"type": "string",
						"description": "diskURI is the URI of data disk in the blob storage"
					},
					"fsType": {
						"type": "string",
						"description": "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"kind": {
						"type": "string",
						"description": "kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					}
				},
				"required": [
					"diskName",
					"diskURI"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1AzureFileVolumeSource": {
				"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
				"properties": {
					"readOnly": {
						"type": "boolean",
						"description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"secretName": {
						"type": "string",
						"description": "secretName is the  name of secret that contains Azure Storage Account Name and Key"
					},
					"shareName": {
						"type": "string",
						"description": "shareName is the azure share Name"
					}
				},
				"required": [
					"secretName",
					"shareName"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1CephFSVolumeSource": {
				"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"monitors": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
					},
					"path": {
						"type": "string",
						"description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
					},
					"secretFile": {
						"type": "string",
						"description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"user": {
						"type": "string",
						"description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
					}
				},
				"required": [
					"monitors"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1CinderVolumeSource": {
				"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"volumeID": {
						"type": "string",
						"description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
					}
				},
				"required": [
					"volumeID"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1KeyToPath": {
				"description": "Maps a string key to a path within a volume.",
				"properties": {
					"key": {
						"type": "string",
						"description": "key is the key to project."
					},
					"mode": {
						"type": "number",
						"format": "double",
						"description": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"path": {
						"type": "string",
						"description": "path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element \\'..\\'. May not start with the string \\'..\\'."
					}
				},
				"required": [
					"key",
					"path"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ConfigMapVolumeSource": {
				"description": "Adapts a ConfigMap into a volume.  The contents of the target ConfigMap\\'s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
				"properties": {
					"defaultMode": {
						"type": "number",
						"format": "double",
						"description": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1KeyToPath"
						},
						"type": "array",
						"description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \\'..\\' path or start with \\'..\\'."
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "optional specify whether the ConfigMap or its keys must be defined"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1CSIVolumeSource": {
				"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
				"properties": {
					"driver": {
						"type": "string",
						"description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster."
					},
					"fsType": {
						"type": "string",
						"description": "fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply."
					},
					"nodePublishSecretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write)."
					},
					"volumeAttributes": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver\\'s documentation for supported values."
					}
				},
				"required": [
					"driver"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1DownwardAPIVolumeFile": {
				"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
				"properties": {
					"fieldRef": {
						"$ref": "#/components/schemas/V1ObjectFieldSelector"
					},
					"mode": {
						"type": "number",
						"format": "double",
						"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"path": {
						"type": "string",
						"description": "Required: Path is  the relative path name of the file to be created. Must not be absolute or contain the \\'..\\' path. Must be utf-8 encoded. The first item of the relative path must not start with \\'..\\'"
					},
					"resourceFieldRef": {
						"$ref": "#/components/schemas/V1ResourceFieldSelector"
					}
				},
				"required": [
					"path"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1DownwardAPIVolumeSource": {
				"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
				"properties": {
					"defaultMode": {
						"type": "number",
						"format": "double",
						"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1DownwardAPIVolumeFile"
						},
						"type": "array",
						"description": "Items is a list of downward API volume file"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1EmptyDirVolumeSource": {
				"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
				"properties": {
					"medium": {
						"type": "string",
						"description": "medium represents what type of storage medium should back this directory. The default is \\\"\\\" which means to use the node\\'s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
					},
					"sizeLimit": {
						"type": "string",
						"description": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1TypedLocalObjectReference": {
				"description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
				"properties": {
					"apiGroup": {
						"type": "string",
						"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required."
					},
					"kind": {
						"type": "string",
						"description": "Kind is the type of resource being referenced"
					},
					"name": {
						"type": "string",
						"description": "Name is the name of resource being referenced"
					}
				},
				"required": [
					"kind",
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1TypedObjectReference": {
				"description": "Kubernetes\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThe version of the OpenAPI document: release-1.28\n\n\nNOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\nhttps://openapi-generator.tech\nDo not edit the class manually.",
				"properties": {
					"apiGroup": {
						"type": "string",
						"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required."
					},
					"kind": {
						"type": "string",
						"description": "Kind is the type of resource being referenced"
					},
					"name": {
						"type": "string",
						"description": "Name is the name of resource being referenced"
					},
					"namespace": {
						"type": "string",
						"description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace\\'s owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled."
					}
				},
				"required": [
					"kind",
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PersistentVolumeClaimSpec": {
				"description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
				"properties": {
					"accessModes": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1"
					},
					"dataSource": {
						"$ref": "#/components/schemas/V1TypedLocalObjectReference"
					},
					"dataSourceRef": {
						"$ref": "#/components/schemas/V1TypedObjectReference"
					},
					"resources": {
						"$ref": "#/components/schemas/V1ResourceRequirements"
					},
					"selector": {
						"$ref": "#/components/schemas/V1LabelSelector"
					},
					"storageClassName": {
						"type": "string",
						"description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1"
					},
					"volumeMode": {
						"type": "string",
						"description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec."
					},
					"volumeName": {
						"type": "string",
						"description": "volumeName is the binding reference to the PersistentVolume backing this claim."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1PersistentVolumeClaimTemplate": {
				"description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.",
				"properties": {
					"metadata": {
						"$ref": "#/components/schemas/V1ObjectMeta"
					},
					"spec": {
						"$ref": "#/components/schemas/V1PersistentVolumeClaimSpec"
					}
				},
				"required": [
					"spec"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1EphemeralVolumeSource": {
				"description": "Represents an ephemeral volume that is handled by a normal storage driver.",
				"properties": {
					"volumeClaimTemplate": {
						"$ref": "#/components/schemas/V1PersistentVolumeClaimTemplate"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1FCVolumeSource": {
				"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"lun": {
						"type": "number",
						"format": "double",
						"description": "lun is Optional: FC target lun number"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"targetWWNs": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "targetWWNs is Optional: FC target worldwide names (WWNs)"
					},
					"wwids": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1FlexVolumeSource": {
				"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
				"properties": {
					"driver": {
						"type": "string",
						"description": "driver is the name of the driver to use for this volume."
					},
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script."
					},
					"options": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "options is Optional: this field holds extra command options if any."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					}
				},
				"required": [
					"driver"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1FlockerVolumeSource": {
				"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"datasetName": {
						"type": "string",
						"description": "datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated"
					},
					"datasetUUID": {
						"type": "string",
						"description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1GCEPersistentDiskVolumeSource": {
				"description": "Represents a Persistent Disk resource in Google Compute Engine.  A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
					},
					"partition": {
						"type": "number",
						"format": "double",
						"description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
					},
					"pdName": {
						"type": "string",
						"description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
					}
				},
				"required": [
					"pdName"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1GitRepoVolumeSource": {
				"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.  DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod\\'s container.",
				"properties": {
					"directory": {
						"type": "string",
						"description": "directory is the target directory name. Must not contain or start with \\'..\\'.  If \\'.\\' is supplied, the volume directory will be the git repository.  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name."
					},
					"repository": {
						"type": "string",
						"description": "repository is the URL"
					},
					"revision": {
						"type": "string",
						"description": "revision is the commit hash for the specified revision."
					}
				},
				"required": [
					"repository"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1GlusterfsVolumeSource": {
				"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"endpoints": {
						"type": "string",
						"description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod"
					},
					"path": {
						"type": "string",
						"description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod"
					}
				},
				"required": [
					"endpoints",
					"path"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1HostPathVolumeSource": {
				"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"path": {
						"type": "string",
						"description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
					},
					"type": {
						"type": "string",
						"description": "type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
					}
				},
				"required": [
					"path"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ISCSIVolumeSource": {
				"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
				"properties": {
					"chapAuthDiscovery": {
						"type": "boolean",
						"description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication"
					},
					"chapAuthSession": {
						"type": "boolean",
						"description": "chapAuthSession defines whether support iSCSI Session CHAP authentication"
					},
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi"
					},
					"initiatorName": {
						"type": "string",
						"description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection."
					},
					"iqn": {
						"type": "string",
						"description": "iqn is the target iSCSI Qualified Name."
					},
					"iscsiInterface": {
						"type": "string",
						"description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to \\'default\\' (tcp)."
					},
					"lun": {
						"type": "number",
						"format": "double",
						"description": "lun represents iSCSI Target Lun number."
					},
					"portals": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false."
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"targetPortal": {
						"type": "string",
						"description": "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)."
					}
				},
				"required": [
					"iqn",
					"lun",
					"targetPortal"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1NFSVolumeSource": {
				"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"path": {
						"type": "string",
						"description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
					},
					"server": {
						"type": "string",
						"description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
					}
				},
				"required": [
					"path",
					"server"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PersistentVolumeClaimVolumeSource": {
				"description": "PersistentVolumeClaimVolumeSource references the user\\'s PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
				"properties": {
					"claimName": {
						"type": "string",
						"description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false."
					}
				},
				"required": [
					"claimName"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PhotonPersistentDiskVolumeSource": {
				"description": "Represents a Photon Controller persistent disk resource.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"pdID": {
						"type": "string",
						"description": "pdID is the ID that identifies Photon Controller persistent disk"
					}
				},
				"required": [
					"pdID"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PortworxVolumeSource": {
				"description": "PortworxVolumeSource represents a Portworx volume resource.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"volumeID": {
						"type": "string",
						"description": "volumeID uniquely identifies a Portworx volume"
					}
				},
				"required": [
					"volumeID"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ConfigMapProjection": {
				"description": "Adapts a ConfigMap into a projected volume.  The contents of the target ConfigMap\\'s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
				"properties": {
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1KeyToPath"
						},
						"type": "array",
						"description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \\'..\\' path or start with \\'..\\'."
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "optional specify whether the ConfigMap or its keys must be defined"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1DownwardAPIProjection": {
				"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
				"properties": {
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1DownwardAPIVolumeFile"
						},
						"type": "array",
						"description": "Items is a list of DownwardAPIVolume file"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1SecretProjection": {
				"description": "Adapts a secret into a projected volume.  The contents of the target Secret\\'s Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
				"properties": {
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1KeyToPath"
						},
						"type": "array",
						"description": "items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \\'..\\' path or start with \\'..\\'."
					},
					"name": {
						"type": "string",
						"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"optional": {
						"type": "boolean",
						"description": "optional field specify whether the Secret or its key must be defined"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ServiceAccountTokenProjection": {
				"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
				"properties": {
					"audience": {
						"type": "string",
						"description": "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver."
					},
					"expirationSeconds": {
						"type": "number",
						"format": "double",
						"description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes."
					},
					"path": {
						"type": "string",
						"description": "path is the path relative to the mount point of the file to project the token into."
					}
				},
				"required": [
					"path"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1VolumeProjection": {
				"description": "Projection that may be projected along with other supported volume types",
				"properties": {
					"configMap": {
						"$ref": "#/components/schemas/V1ConfigMapProjection"
					},
					"downwardAPI": {
						"$ref": "#/components/schemas/V1DownwardAPIProjection"
					},
					"secret": {
						"$ref": "#/components/schemas/V1SecretProjection"
					},
					"serviceAccountToken": {
						"$ref": "#/components/schemas/V1ServiceAccountTokenProjection"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1ProjectedVolumeSource": {
				"description": "Represents a projected volume source",
				"properties": {
					"defaultMode": {
						"type": "number",
						"format": "double",
						"description": "defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"sources": {
						"items": {
							"$ref": "#/components/schemas/V1VolumeProjection"
						},
						"type": "array",
						"description": "sources is the list of volume projections"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1QuobyteVolumeSource": {
				"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
				"properties": {
					"group": {
						"type": "string",
						"description": "group to map volume access to Default is no group"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false."
					},
					"registry": {
						"type": "string",
						"description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes"
					},
					"tenant": {
						"type": "string",
						"description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin"
					},
					"user": {
						"type": "string",
						"description": "user to map volume access to Defaults to serivceaccount user"
					},
					"volume": {
						"type": "string",
						"description": "volume is a string that references an already created Quobyte volume by name."
					}
				},
				"required": [
					"registry",
					"volume"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1RBDVolumeSource": {
				"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd"
					},
					"image": {
						"type": "string",
						"description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					},
					"keyring": {
						"type": "string",
						"description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					},
					"monitors": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					},
					"pool": {
						"type": "string",
						"description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"user": {
						"type": "string",
						"description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
					}
				},
				"required": [
					"image",
					"monitors"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1ScaleIOVolumeSource": {
				"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\"."
					},
					"gateway": {
						"type": "string",
						"description": "gateway is the host address of the ScaleIO API Gateway."
					},
					"protectionDomain": {
						"type": "string",
						"description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"sslEnabled": {
						"type": "boolean",
						"description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false"
					},
					"storageMode": {
						"type": "string",
						"description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned."
					},
					"storagePool": {
						"type": "string",
						"description": "storagePool is the ScaleIO Storage Pool associated with the protection domain."
					},
					"system": {
						"type": "string",
						"description": "system is the name of the storage system as configured in ScaleIO."
					},
					"volumeName": {
						"type": "string",
						"description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source."
					}
				},
				"required": [
					"gateway",
					"secretRef",
					"system"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1SecretVolumeSource": {
				"description": "Adapts a Secret into a volume.  The contents of the target Secret\\'s Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
				"properties": {
					"defaultMode": {
						"type": "number",
						"format": "double",
						"description": "defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set."
					},
					"items": {
						"items": {
							"$ref": "#/components/schemas/V1KeyToPath"
						},
						"type": "array",
						"description": "items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the \\'..\\' path or start with \\'..\\'."
					},
					"optional": {
						"type": "boolean",
						"description": "optional field specify whether the Secret or its keys must be defined"
					},
					"secretName": {
						"type": "string",
						"description": "secretName is the name of the secret in the pod\\'s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1StorageOSVolumeSource": {
				"description": "Represents a StorageOS persistent volume resource.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"readOnly": {
						"type": "boolean",
						"description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
					},
					"secretRef": {
						"$ref": "#/components/schemas/V1LocalObjectReference"
					},
					"volumeName": {
						"type": "string",
						"description": "volumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace."
					},
					"volumeNamespace": {
						"type": "string",
						"description": "volumeNamespace specifies the scope of the volume within StorageOS.  If no namespace is specified then the Pod\\'s namespace will be used.  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1VsphereVirtualDiskVolumeSource": {
				"description": "Represents a vSphere volume resource.",
				"properties": {
					"fsType": {
						"type": "string",
						"description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified."
					},
					"storagePolicyID": {
						"type": "string",
						"description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName."
					},
					"storagePolicyName": {
						"type": "string",
						"description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name."
					},
					"volumePath": {
						"type": "string",
						"description": "volumePath is the path that identifies vSphere volume vmdk"
					}
				},
				"required": [
					"volumePath"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1Volume": {
				"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
				"properties": {
					"awsElasticBlockStore": {
						"$ref": "#/components/schemas/V1AWSElasticBlockStoreVolumeSource"
					},
					"azureDisk": {
						"$ref": "#/components/schemas/V1AzureDiskVolumeSource"
					},
					"azureFile": {
						"$ref": "#/components/schemas/V1AzureFileVolumeSource"
					},
					"cephfs": {
						"$ref": "#/components/schemas/V1CephFSVolumeSource"
					},
					"cinder": {
						"$ref": "#/components/schemas/V1CinderVolumeSource"
					},
					"configMap": {
						"$ref": "#/components/schemas/V1ConfigMapVolumeSource"
					},
					"csi": {
						"$ref": "#/components/schemas/V1CSIVolumeSource"
					},
					"downwardAPI": {
						"$ref": "#/components/schemas/V1DownwardAPIVolumeSource"
					},
					"emptyDir": {
						"$ref": "#/components/schemas/V1EmptyDirVolumeSource"
					},
					"ephemeral": {
						"$ref": "#/components/schemas/V1EphemeralVolumeSource"
					},
					"fc": {
						"$ref": "#/components/schemas/V1FCVolumeSource"
					},
					"flexVolume": {
						"$ref": "#/components/schemas/V1FlexVolumeSource"
					},
					"flocker": {
						"$ref": "#/components/schemas/V1FlockerVolumeSource"
					},
					"gcePersistentDisk": {
						"$ref": "#/components/schemas/V1GCEPersistentDiskVolumeSource"
					},
					"gitRepo": {
						"$ref": "#/components/schemas/V1GitRepoVolumeSource"
					},
					"glusterfs": {
						"$ref": "#/components/schemas/V1GlusterfsVolumeSource"
					},
					"hostPath": {
						"$ref": "#/components/schemas/V1HostPathVolumeSource"
					},
					"iscsi": {
						"$ref": "#/components/schemas/V1ISCSIVolumeSource"
					},
					"name": {
						"type": "string",
						"description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
					},
					"nfs": {
						"$ref": "#/components/schemas/V1NFSVolumeSource"
					},
					"persistentVolumeClaim": {
						"$ref": "#/components/schemas/V1PersistentVolumeClaimVolumeSource"
					},
					"photonPersistentDisk": {
						"$ref": "#/components/schemas/V1PhotonPersistentDiskVolumeSource"
					},
					"portworxVolume": {
						"$ref": "#/components/schemas/V1PortworxVolumeSource"
					},
					"projected": {
						"$ref": "#/components/schemas/V1ProjectedVolumeSource"
					},
					"quobyte": {
						"$ref": "#/components/schemas/V1QuobyteVolumeSource"
					},
					"rbd": {
						"$ref": "#/components/schemas/V1RBDVolumeSource"
					},
					"scaleIO": {
						"$ref": "#/components/schemas/V1ScaleIOVolumeSource"
					},
					"secret": {
						"$ref": "#/components/schemas/V1SecretVolumeSource"
					},
					"storageos": {
						"$ref": "#/components/schemas/V1StorageOSVolumeSource"
					},
					"vsphereVolume": {
						"$ref": "#/components/schemas/V1VsphereVirtualDiskVolumeSource"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodSpec": {
				"description": "PodSpec is a description of a pod.",
				"properties": {
					"activeDeadlineSeconds": {
						"type": "number",
						"format": "double",
						"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer."
					},
					"affinity": {
						"$ref": "#/components/schemas/V1Affinity"
					},
					"automountServiceAccountToken": {
						"type": "boolean",
						"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted."
					},
					"containers": {
						"items": {
							"$ref": "#/components/schemas/V1Container"
						},
						"type": "array",
						"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated."
					},
					"dnsConfig": {
						"$ref": "#/components/schemas/V1PodDNSConfig"
					},
					"dnsPolicy": {
						"type": "string",
						"description": "Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are \\'ClusterFirstWithHostNet\\', \\'ClusterFirst\\', \\'Default\\' or \\'None\\'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to \\'ClusterFirstWithHostNet\\'."
					},
					"enableServiceLinks": {
						"type": "boolean",
						"description": "EnableServiceLinks indicates whether information about services should be injected into pod\\'s environment variables, matching the syntax of Docker links. Optional: Defaults to true."
					},
					"ephemeralContainers": {
						"items": {
							"$ref": "#/components/schemas/V1EphemeralContainer"
						},
						"type": "array",
						"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod\\'s ephemeralcontainers subresource."
					},
					"hostAliases": {
						"items": {
							"$ref": "#/components/schemas/V1HostAlias"
						},
						"type": "array",
						"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod\\'s hosts file if specified. This is only valid for non-hostNetwork pods."
					},
					"hostIPC": {
						"type": "boolean",
						"description": "Use the host\\'s ipc namespace. Optional: Default to false."
					},
					"hostNetwork": {
						"type": "boolean",
						"description": "Host networking requested for this pod. Use the host\\'s network namespace. If this option is set, the ports that will be used must be specified. Default to false."
					},
					"hostPID": {
						"type": "boolean",
						"description": "Use the host\\'s pid namespace. Optional: Default to false."
					},
					"hostUsers": {
						"type": "boolean",
						"description": "Use the host\\'s user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature."
					},
					"hostname": {
						"type": "string",
						"description": "Specifies the hostname of the Pod If not specified, the pod\\'s hostname will be set to a system-defined value."
					},
					"imagePullSecrets": {
						"items": {
							"$ref": "#/components/schemas/V1LocalObjectReference"
						},
						"type": "array",
						"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod"
					},
					"initContainers": {
						"items": {
							"$ref": "#/components/schemas/V1Container"
						},
						"type": "array",
						"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/"
					},
					"nodeName": {
						"type": "string",
						"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements."
					},
					"nodeSelector": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node\\'s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/"
					},
					"os": {
						"$ref": "#/components/schemas/V1PodOS"
					},
					"overhead": {
						"properties": {},
						"additionalProperties": {
							"type": "string"
						},
						"type": "object",
						"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md"
					},
					"preemptionPolicy": {
						"type": "string",
						"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset."
					},
					"priority": {
						"type": "number",
						"format": "double",
						"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority."
					},
					"priorityClassName": {
						"type": "string",
						"description": "If specified, indicates the pod\\'s priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default."
					},
					"readinessGates": {
						"items": {
							"$ref": "#/components/schemas/V1PodReadinessGate"
						},
						"type": "array",
						"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates"
					},
					"resourceClaims": {
						"items": {
							"$ref": "#/components/schemas/V1PodResourceClaim"
						},
						"type": "array",
						"description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.  This is an alpha field and requires enabling the DynamicResourceAllocation feature gate.  This field is immutable."
					},
					"restartPolicy": {
						"type": "string",
						"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy"
					},
					"runtimeClassName": {
						"type": "string",
						"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod.  If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class"
					},
					"schedulerName": {
						"type": "string",
						"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler."
					},
					"schedulingGates": {
						"items": {
							"$ref": "#/components/schemas/V1PodSchedulingGate"
						},
						"type": "array",
						"description": "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod.  SchedulingGates can only be set at pod creation time, and be removed only afterwards.  This is a beta feature enabled by the PodSchedulingReadiness feature gate."
					},
					"securityContext": {
						"$ref": "#/components/schemas/V1PodSecurityContext"
					},
					"serviceAccount": {
						"type": "string",
						"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead."
					},
					"serviceAccountName": {
						"type": "string",
						"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/"
					},
					"setHostnameAsFQDN": {
						"type": "boolean",
						"description": "If true the pod\\'s hostname will be configured as the pod\\'s FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\SYSTEM\\\\CurrentControlSet\\\\Services\\\\Tcpip\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false."
					},
					"shareProcessNamespace": {
						"type": "boolean",
						"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false."
					},
					"subdomain": {
						"type": "string",
						"description": "If specified, the fully qualified Pod hostname will be \\\"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\\\". If not specified, the pod will not have a domainname at all."
					},
					"terminationGracePeriodSeconds": {
						"type": "number",
						"format": "double",
						"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds."
					},
					"tolerations": {
						"items": {
							"$ref": "#/components/schemas/V1Toleration"
						},
						"type": "array",
						"description": "If specified, the pod\\'s tolerations."
					},
					"topologySpreadConstraints": {
						"items": {
							"$ref": "#/components/schemas/V1TopologySpreadConstraint"
						},
						"type": "array",
						"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed."
					},
					"volumes": {
						"items": {
							"$ref": "#/components/schemas/V1Volume"
						},
						"type": "array",
						"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes"
					}
				},
				"required": [
					"containers"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1PodTemplateSpec": {
				"description": "PodTemplateSpec describes the data a pod should have when created from a template",
				"properties": {
					"metadata": {
						"$ref": "#/components/schemas/V1ObjectMeta"
					},
					"spec": {
						"$ref": "#/components/schemas/V1PodSpec"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"V1DeploymentSpec": {
				"description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
				"properties": {
					"minReadySeconds": {
						"type": "number",
						"format": "double",
						"description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)"
					},
					"paused": {
						"type": "boolean",
						"description": "Indicates that the deployment is paused."
					},
					"progressDeadlineSeconds": {
						"type": "number",
						"format": "double",
						"description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s."
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1."
					},
					"revisionHistoryLimit": {
						"type": "number",
						"format": "double",
						"description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10."
					},
					"selector": {
						"$ref": "#/components/schemas/V1LabelSelector"
					},
					"strategy": {
						"$ref": "#/components/schemas/V1DeploymentStrategy"
					},
					"template": {
						"$ref": "#/components/schemas/V1PodTemplateSpec"
					}
				},
				"required": [
					"selector",
					"template"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1DeploymentCondition": {
				"description": "DeploymentCondition describes the state of a deployment at a certain point.",
				"properties": {
					"lastTransitionTime": {
						"type": "string",
						"format": "date-time",
						"description": "Last time the condition transitioned from one status to another."
					},
					"lastUpdateTime": {
						"type": "string",
						"format": "date-time",
						"description": "The last time this condition was updated."
					},
					"message": {
						"type": "string",
						"description": "A human readable message indicating details about the transition."
					},
					"reason": {
						"type": "string",
						"description": "The reason for the condition\\'s last transition."
					},
					"status": {
						"type": "string",
						"description": "Status of the condition, one of True, False, Unknown."
					},
					"type": {
						"type": "string",
						"description": "Type of deployment condition."
					}
				},
				"required": [
					"status",
					"type"
				],
				"type": "object",
				"additionalProperties": false
			},
			"V1DeploymentStatus": {
				"description": "DeploymentStatus is the most recently observed status of the Deployment.",
				"properties": {
					"availableReplicas": {
						"type": "number",
						"format": "double",
						"description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment."
					},
					"collisionCount": {
						"type": "number",
						"format": "double",
						"description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet."
					},
					"conditions": {
						"items": {
							"$ref": "#/components/schemas/V1DeploymentCondition"
						},
						"type": "array",
						"description": "Represents the latest available observations of a deployment\\'s current state."
					},
					"observedGeneration": {
						"type": "number",
						"format": "double",
						"description": "The generation observed by the deployment controller."
					},
					"readyReplicas": {
						"type": "number",
						"format": "double",
						"description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition."
					},
					"replicas": {
						"type": "number",
						"format": "double",
						"description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector)."
					},
					"unavailableReplicas": {
						"type": "number",
						"format": "double",
						"description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created."
					},
					"updatedReplicas": {
						"type": "number",
						"format": "double",
						"description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"KubeDeployment": {
				"properties": {
					"apiVersion": {
						"type": "string",
						"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
					},
					"kind": {
						"type": "string",
						"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
					},
					"metadata": {
						"$ref": "#/components/schemas/V1ObjectMeta"
					},
					"spec": {
						"$ref": "#/components/schemas/V1DeploymentSpec"
					},
					"status": {
						"$ref": "#/components/schemas/V1DeploymentStatus"
					},
					"clusterSlug": {
						"type": "string"
					},
					"clusterShortName": {
						"type": "string",
						"description": "Cluster's short name",
						"deprecated": true
					},
					"cluster": {
						"type": "string",
						"description": "Cluster ID"
					},
					"workspace": {
						"type": "string",
						"description": "Workspace ID"
					},
					"cpuAvg": {
						"type": "string",
						"description": "Usage"
					},
					"cpuCapacity": {
						"type": "string"
					},
					"cpuRecommend": {
						"type": "string"
					},
					"memoryAvg": {
						"type": "string"
					},
					"memoryCapacity": {
						"type": "string"
					},
					"memoryRecommend": {
						"type": "string"
					},
					"size": {
						"$ref": "#/components/schemas/ResourceQuotaSize"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"GenerateDeploymentResult": {
				"properties": {
					"endpoint": {
						"type": "string"
					},
					"IMAGE_NAME": {
						"type": "string"
					},
					"buildTag": {
						"type": "string"
					},
					"deploymentCfg": {
						"$ref": "#/components/schemas/KubeDeployment"
					},
					"deploymentContent": {
						"type": "string"
					},
					"namespaceObject": {
						"$ref": "#/components/schemas/KubeNamespace"
					},
					"namespaceContent": {
						"type": "string"
					}
				},
				"required": [
					"endpoint",
					"IMAGE_NAME",
					"buildTag",
					"deploymentCfg",
					"deploymentContent",
					"namespaceObject",
					"namespaceContent"
				],
				"type": "object"
			},
			"DeployBuildV2Result": {
				"properties": {
					"endpoint": {
						"type": "string"
					},
					"deployment": {
						"$ref": "#/components/schemas/GenerateDeploymentResult"
					},
					"release": {
						"$ref": "#/components/schemas/IRelease"
					},
					"build": {
						"$ref": "#/components/schemas/IBuild"
					},
					"app": {
						"$ref": "#/components/schemas/IApp"
					}
				},
				"required": [
					"endpoint",
					"deployment",
					"release",
					"build",
					"app"
				],
				"type": "object"
			},
			"DeployBuildV2Options": {
				"properties": {
					"healthzPath": {
						"type": "string",
						"nullable": true,
						"description": "Health check path",
						"default": "\"/\""
					},
					"deployInBackground": {
						"type": "boolean",
						"description": "### WARNING\nSkip watching the progress of deployment, let it run in background, won't return the deployment's status.",
						"default": "true"
					},
					"skipReadyCheck": {
						"type": "boolean",
						"description": "### WARNING\nSkip checking deployed POD's ready status.\n- The response status will always be SUCCESS even if the pod is unable to start up properly.",
						"default": "false"
					},
					"forceRollOut": {
						"type": "boolean",
						"description": "### ONLY APPLY FOR DEPLOYING to PROD\nForce roll out the release to \"prod\" deploy environment (skip the \"prerelease\" environment)",
						"default": "false",
						"deprecated": true
					},
					"shouldUseFreshDeploy": {
						"type": "boolean",
						"description": "### CAUTION\nIf `TRUE`, it will find and wipe out the current deployment, then deploy a new one!"
					},
					"cliVersion": {
						"type": "string",
						"description": "Current version of the Diginext CLI"
					},
					"clusterSlug": {
						"type": "string",
						"description": "Select target cluster (by slug) to deploy"
					},
					"port": {
						"type": "number",
						"format": "double",
						"description": "App's exposed port"
					},
					"workspace": {
						"$ref": "#/components/schemas/IWorkspace",
						"description": "### `REQUIRED`\nWorkspace"
					},
					"owner": {
						"$ref": "#/components/schemas/IUser",
						"description": "### `REQUIRED`\nThe USER who process this request"
					},
					"env": {
						"type": "string",
						"description": "### `REQUIRED`\nTarget deploy environment"
					}
				},
				"required": [
					"workspace",
					"owner",
					"env"
				],
				"type": "object"
			},
			"PromoteDeployEnvironmentOptions": {
				"allOf": [
					{
						"properties": {
							"fromEnv": {
								"type": "string",
								"description": "Original deploy environment (FROM)"
							},
							"appSlug": {
								"type": "string",
								"description": "App's slug"
							},
							"isDebugging": {
								"type": "boolean",
								"default": "false"
							}
						},
						"required": [
							"fromEnv",
							"appSlug"
						],
						"type": "object"
					},
					{
						"$ref": "#/components/schemas/DeployBuildV2Options"
					}
				]
			},
			"dxDomain.CreateDiginextDomainParams": {
				"properties": {
					"userId": {
						"type": "string",
						"description": "DXSITE User ID"
					},
					"data": {
						"type": "string"
					},
					"name": {
						"type": "string",
						"description": "Subdomain name"
					}
				},
				"required": [
					"userId",
					"data",
					"name"
				],
				"type": "object"
			},
			"GetDiginextDomainsResponse": {
				"allOf": [
					{
						"$ref": "#/components/schemas/ResponseData"
					},
					{
						"properties": {
							"data": {
								"properties": {
									"domains": {
										"items": {
											"properties": {
												"name": {
													"type": "string"
												},
												"id": {
													"type": "string"
												}
											},
											"required": [
												"name",
												"id"
											],
											"type": "object"
										},
										"type": "array"
									}
								},
								"required": [
									"domains"
								],
								"type": "object"
							}
						},
						"required": [
							"data"
						],
						"type": "object"
					}
				]
			},
			"GetDiginextDomainRecordsResponse": {
				"allOf": [
					{
						"$ref": "#/components/schemas/ResponseData"
					},
					{
						"properties": {
							"data": {
								"properties": {
									"records": {
										"items": {
											"properties": {
												"data": {
													"type": "string"
												},
												"type": {
													"type": "string"
												},
												"name": {
													"type": "string"
												},
												"id": {
													"type": "string"
												}
											},
											"required": [
												"data",
												"type",
												"name",
												"id"
											],
											"type": "object"
										},
										"type": "array"
									}
								},
								"required": [
									"records"
								],
								"type": "object"
							}
						},
						"required": [
							"data"
						],
						"type": "object"
					}
				]
			},
			"UpdateDiginextDomainResponse": {
				"allOf": [
					{
						"$ref": "#/components/schemas/ResponseData"
					},
					{
						"properties": {
							"data": {
								"properties": {
									"data": {
										"type": "string",
										"description": "Value of \"A\" record"
									},
									"type": {
										"type": "string",
										"description": "Record type (A, TXT, CNAME, MX,...)"
									},
									"name": {
										"type": "string",
										"description": "Subdomain name"
									},
									"id": {
										"type": "string"
									}
								},
								"required": [
									"data",
									"type",
									"name",
									"id"
								],
								"type": "object"
							}
						},
						"required": [
							"data"
						],
						"type": "object"
					}
				]
			},
			"Partial_DiginextDomainRecordQuery_": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Record name"
					},
					"type": {
						"type": "string",
						"description": "Record type (A, TXT, CNAME, MX,...)"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"dxDomain.UpdateDiginextDomainData": {
				"allOf": [
					{
						"$ref": "#/components/schemas/Partial_DiginextDomainRecordQuery_"
					},
					{
						"properties": {
							"userId": {
								"type": "string",
								"description": "DXSITE User ID"
							},
							"data": {
								"type": "string",
								"description": "Value of \"A\" record"
							}
						},
						"required": [
							"userId",
							"data"
						],
						"type": "object"
					}
				]
			},
			"Pick_IFramework.Exclude_keyofIFramework.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"gitProvider": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "Type of the Git Provider"
					},
					"git": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IGitProvider"
							}
						],
						"description": "ID of the Git Provider"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"host": {
						"type": "string"
					},
					"isPrivate": {
						"type": "boolean",
						"description": "Git repository access privacy",
						"deprecated": true
					},
					"repoURL": {
						"type": "string",
						"description": "The repository URL of the framework."
					},
					"repoSSH": {
						"type": "string",
						"description": "The SSH URL of the framework."
					},
					"mainBranch": {
						"type": "string",
						"description": "The main branch of the framework."
					},
					"downloads": {
						"type": "number",
						"format": "double",
						"description": "The number of downloads for the framework."
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IFramework.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IFramework.Exclude_keyofIFramework.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"FrameworkDto": {
				"$ref": "#/components/schemas/Omit_IFramework.keyofHiddenBodyKeys_"
			},
			"Pick_IGitProvider.Exclude_keyofIGitProvider.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string",
						"description": "The name of the Git provider."
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default git provider"
					},
					"host": {
						"type": "string",
						"description": "The host of the Git provider."
					},
					"org": {
						"type": "string",
						"description": "The Git workspace (ORG) of the Git provider."
					},
					"gitWorkspace": {
						"type": "string",
						"description": "Alias of `org` field, will be remove soon.",
						"deprecated": true
					},
					"repo": {
						"properties": {
							"sshPrefix": {
								"type": "string",
								"description": "The SSH prefix of the repository of the Git provider."
							},
							"url": {
								"type": "string",
								"description": "The URL of the repository of the Git provider."
							}
						},
						"type": "object",
						"description": "The repository of the Git provider."
					},
					"isOrg": {
						"type": "boolean",
						"description": "- `TRUE` if the git provider which connected by \"Administrator\"\n- `FALSE` if it was connected by workspace's members and won't be displayed on the dashboard."
					},
					"type": {
						"$ref": "#/components/schemas/GitProviderType",
						"description": "The type of the Git provider."
					},
					"bitbucket_oauth": {
						"$ref": "#/components/schemas/BitbucketOAuthOptions",
						"description": "Bitbucket OAuth Information"
					},
					"github_oauth": {
						"$ref": "#/components/schemas/GithubOAuthOptions",
						"description": "Github OAuth Information"
					},
					"method": {
						"type": "string",
						"enum": [
							"bearer",
							"basic"
						],
						"description": "Authorization header method"
					},
					"access_token": {
						"type": "string",
						"description": "The API access token of the Git provider,\nto create new repo, commit, pull & push changes to the repositories."
					},
					"refresh_token": {
						"type": "string",
						"description": "The API refresh token of the Git provider,\nto obtain new access token if it's expired"
					},
					"verified": {
						"type": "boolean",
						"description": "Verify status, `true` is successfully connected with the git workspace REST API."
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IGitProvider.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IGitProvider.Exclude_keyofIGitProvider.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"GitProviderDto": {
				"$ref": "#/components/schemas/Omit_IGitProvider.keyofHiddenBodyKeys_"
			},
			"GitRepositoryDto": {
				"properties": {
					"name": {
						"type": "string"
					},
					"description": {
						"type": "string"
					},
					"private": {
						"type": "boolean"
					}
				},
				"required": [
					"name",
					"private"
				],
				"type": "object",
				"additionalProperties": false
			},
			"GitProviderDomain": {
				"type": "string",
				"enum": [
					"bitbucket.org",
					"github.com"
				]
			},
			"Partial_Metadata_": {
				"properties": {
					"annotations": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"creationTimestamp": {
						"type": "string"
					},
					"finalizers": {
						"items": {
							"type": "string"
						},
						"type": "array"
					},
					"labels": {
						"$ref": "#/components/schemas/Record_string.string_"
					},
					"name": {
						"type": "string"
					},
					"resourceVersion": {
						"type": "string"
					},
					"uid": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Spec_": {
				"properties": {
					"podCIDR": {
						"type": "string"
					},
					"podCIDRs": {
						"items": {
							"type": "string"
						},
						"type": "array"
					},
					"providerID": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Address_": {
				"properties": {
					"address": {
						"type": "string"
					},
					"type": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Allocatable_": {
				"properties": {
					"cpu": {
						"type": "string"
					},
					"ephemeral-storage": {
						"type": "string"
					},
					"github.com/fuse": {
						"type": "string"
					},
					"hugepages-1Gi": {
						"type": "string"
					},
					"hugepages-2Mi": {
						"type": "string"
					},
					"memory": {
						"type": "string"
					},
					"pods": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Capacity_": {
				"properties": {
					"cpu": {
						"type": "string"
					},
					"ephemeral-storage": {
						"type": "string"
					},
					"github.com/fuse": {
						"type": "string"
					},
					"hugepages-1Gi": {
						"type": "string"
					},
					"hugepages-2Mi": {
						"type": "string"
					},
					"memory": {
						"type": "string"
					},
					"pods": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Condition_": {
				"properties": {
					"lastHeartbeatTime": {
						"type": "string"
					},
					"lastTransitionTime": {
						"type": "string"
					},
					"message": {
						"type": "string"
					},
					"reason": {
						"type": "string"
					},
					"status": {
						"type": "string"
					},
					"type": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_DaemonEndpoints_": {
				"properties": {
					"kubeletEndpoint": {
						"properties": {
							"Port": {
								"type": "number",
								"format": "double"
							}
						},
						"required": [
							"Port"
						],
						"type": "object"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Image": {
				"properties": {
					"names": {
						"items": {
							"type": "string"
						},
						"type": "array"
					},
					"sizeBytes": {
						"type": "number",
						"format": "double"
					}
				},
				"required": [
					"names",
					"sizeBytes"
				],
				"type": "object",
				"additionalProperties": false
			},
			"Partial_NodeInfo_": {
				"properties": {
					"architecture": {
						"type": "string"
					},
					"bootID": {
						"type": "string"
					},
					"containerRuntimeVersion": {
						"type": "string"
					},
					"kernelVersion": {
						"type": "string"
					},
					"kubeProxyVersion": {
						"type": "string"
					},
					"kubeletVersion": {
						"type": "string"
					},
					"machineID": {
						"type": "string"
					},
					"operatingSystem": {
						"type": "string"
					},
					"osImage": {
						"type": "string"
					},
					"systemUUID": {
						"type": "string"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"Partial_Status_": {
				"properties": {
					"addresses": {
						"items": {
							"$ref": "#/components/schemas/Partial_Address_"
						},
						"type": "array"
					},
					"allocatable": {
						"$ref": "#/components/schemas/Partial_Allocatable_"
					},
					"capacity": {
						"$ref": "#/components/schemas/Partial_Capacity_"
					},
					"conditions": {
						"items": {
							"$ref": "#/components/schemas/Partial_Condition_"
						},
						"type": "array"
					},
					"daemonEndpoints": {
						"$ref": "#/components/schemas/Partial_DaemonEndpoints_"
					},
					"images": {
						"items": {
							"$ref": "#/components/schemas/Image"
						},
						"type": "array"
					},
					"nodeInfo": {
						"$ref": "#/components/schemas/Partial_NodeInfo_"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"KubeNode": {
				"properties": {
					"apiVersion": {
						"type": "string"
					},
					"kind": {
						"type": "string"
					},
					"metadata": {
						"$ref": "#/components/schemas/Partial_Metadata_"
					},
					"spec": {
						"$ref": "#/components/schemas/Partial_Spec_"
					},
					"status": {
						"$ref": "#/components/schemas/Partial_Status_"
					},
					"clusterSlug": {
						"type": "string"
					},
					"clusterShortName": {
						"type": "string",
						"description": "Cluster's short name",
						"deprecated": true
					},
					"cluster": {
						"type": "string",
						"description": "Cluster ID"
					},
					"workspace": {
						"type": "string",
						"description": "Workspace ID"
					},
					"cpu": {
						"type": "string",
						"description": "Usage"
					},
					"cpuPercent": {
						"type": "string"
					},
					"cpuCapacity": {
						"type": "string"
					},
					"memory": {
						"type": "string"
					},
					"memoryPercent": {
						"type": "string"
					},
					"memoryCapacity": {
						"type": "string"
					},
					"podCount": {
						"type": "number",
						"format": "double"
					}
				},
				"required": [
					"apiVersion",
					"kind",
					"metadata",
					"spec",
					"status"
				],
				"type": "object",
				"additionalProperties": false
			},
			"MonitoringQueryParams": {
				"properties": {
					"cluster": {
						"type": "string",
						"description": "Cluster's ID or SLUG"
					},
					"name": {
						"type": "string",
						"description": "Resource's name"
					},
					"namespace": {
						"type": "string",
						"description": "Namespace's name"
					},
					"labels": {
						"description": "Filter by labels"
					},
					"order": {
						"description": "Sort the results based on metadata."
					},
					"sort": {
						"description": "Alias of `order`"
					},
					"output": {
						"type": "string",
						"enum": [
							"json",
							"yaml"
						],
						"description": "Output data type (JSON or YAML)",
						"default": "\"json\""
					},
					"full": {
						"type": "boolean",
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"default": "false"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "Debug mode enabling",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"MonitoringNamespaceQueryFilter": {
				"properties": {
					"cluster": {
						"type": "string",
						"description": "Cluster's ID or SLUG"
					},
					"name": {
						"type": "string",
						"description": "Namespace's name"
					},
					"labels": {
						"description": "Filter by labels"
					},
					"order": {
						"description": "Sort the results based on metadata."
					},
					"sort": {
						"description": "Alias of `order`"
					},
					"output": {
						"type": "string",
						"enum": [
							"json",
							"yaml"
						],
						"description": "Output data type (JSON or YAML)",
						"default": "\"json\""
					},
					"full": {
						"type": "boolean",
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"default": "false"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "Debug mode enabling",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"MonitorNamespaceCreateData": {
				"properties": {
					"labels": {
						"$ref": "#/components/schemas/Record_string.string_",
						"description": "Filter by labels"
					},
					"cluster": {
						"type": "string",
						"description": "Cluster's ID or SLUG"
					},
					"name": {
						"type": "string",
						"description": "Namespace's name"
					}
				},
				"required": [
					"name"
				],
				"type": "object"
			},
			"Record_string.1-or--1_": {
				"properties": {},
				"type": "object",
				"description": "Construct a type with a set of properties K of type T"
			},
			"MonitoringQueryOptions": {
				"properties": {
					"order": {
						"$ref": "#/components/schemas/Record_string.1-or--1_",
						"description": "Sort the results based on metadata."
					},
					"sort": {
						"$ref": "#/components/schemas/Record_string.1-or--1_",
						"description": "Alias of `order`"
					},
					"search": {
						"type": "boolean",
						"description": "If `TRUE`, return the closest results of filter",
						"default": "false"
					},
					"output": {
						"type": "string",
						"enum": [
							"json",
							"yaml"
						],
						"description": "Output data type (JSON or YAML)",
						"default": "\"json\""
					},
					"full": {
						"type": "boolean",
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"default": "false"
					},
					"isDebugging": {
						"type": "boolean",
						"description": "Debug mode enabling",
						"default": "false"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"WebhookEventStatus": {
				"type": "string",
				"enum": [
					"pending",
					"start",
					"building",
					"failed",
					"success",
					"cancelled",
					"in_progress",
					"deploying",
					"healthy",
					"partial_healthy",
					"undeployed",
					"crashed",
					"unknown"
				]
			},
			"SystemEvent": {
				"type": "string",
				"enum": [
					"build_status",
					"deploy_status",
					"dbbackup_status",
					"app_status",
					"project_status",
					"environment_status"
				]
			},
			"IWebhook": {
				"description": "An interface that extends IBase and describes the properties of an webhook.",
				"properties": {
					"_id": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"metadata": {},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"createdAt": {
						"type": "string",
						"format": "date-time",
						"description": "Created date"
					},
					"deletedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Deleted date"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Updated date"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"build": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced build"
					},
					"release": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced release"
					},
					"app": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced app"
					},
					"database": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database"
					},
					"databaseBackup": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database backup"
					},
					"gitProvider": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced git provider"
					},
					"cluster": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced cluster"
					},
					"registry": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced container registry"
					},
					"framework": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced framework"
					},
					"team": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced team"
					},
					"name": {
						"type": "string",
						"description": "The name of the webhook."
					},
					"status": {
						"$ref": "#/components/schemas/WebhookEventStatus",
						"description": "A event status associated with the webhook."
					},
					"consumers": {
						"anyOf": [
							{
								"items": {
									"type": "string"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/ObjectId"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/IUser"
								},
								"type": "array"
							}
						],
						"description": "A list of {IUser} that subscribed to this webhook."
					},
					"consumerGroups": {
						"anyOf": [
							{
								"items": {
									"type": "string"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/ObjectId"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/ITeam"
								},
								"type": "array"
							}
						],
						"description": "A list of {ITeam} that subscribed to this webhook."
					},
					"events": {
						"items": {
							"$ref": "#/components/schemas/SystemEvent"
						},
						"type": "array",
						"description": "A list of {IWebhook} events."
					},
					"channels": {
						"items": {
							"$ref": "#/components/schemas/WebhookChannel"
						},
						"type": "array",
						"description": "A list of {IWebhook} channels."
					},
					"url": {
						"type": "string",
						"description": "The callback URL of the webhook."
					},
					"method": {
						"type": "string",
						"description": "The HTTP method used for the webhook."
					},
					"headers": {
						"description": "The request headers of a callback URL."
					},
					"body": {
						"description": "The request body of a callback URL."
					},
					"httpStatus": {
						"description": "The HTTP status code (200, 403, 503,...) returned from the webhook."
					},
					"responseStatus": {
						"type": "number",
						"format": "double",
						"description": "The response status code (0 or 1) returned from the webhook."
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"IDataReferences": {
				"description": "--------- DATA REFERENCES ---------",
				"properties": {
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"build": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced build"
					},
					"release": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced release"
					},
					"app": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced app"
					},
					"database": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database"
					},
					"databaseBackup": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database backup"
					},
					"gitProvider": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced git provider"
					},
					"cluster": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced cluster"
					},
					"registry": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced container registry"
					},
					"framework": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced framework"
					},
					"team": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced team"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"INotification": {
				"properties": {
					"_id": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"metadata": {},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"createdAt": {
						"type": "string",
						"format": "date-time",
						"description": "Created date"
					},
					"deletedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Deleted date"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Updated date"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"name": {
						"type": "string",
						"description": "The name of the notification."
					},
					"message": {
						"type": "string",
						"description": "A message associated with the notification."
					},
					"from": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							}
						],
						"description": "A user ID who sent the notification."
					},
					"webhook": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWebhook"
							}
						],
						"description": "A webhook associated with the notification."
					},
					"events": {
						"items": {
							"$ref": "#/components/schemas/SystemEvent"
						},
						"type": "array",
						"description": "The system event that triggered the notification"
					},
					"status": {
						"allOf": [
							{
								"$ref": "#/components/schemas/BuildStatus"
							},
							{
								"$ref": "#/components/schemas/DeployStatus"
							},
							{
								"$ref": "#/components/schemas/BackupStatus"
							},
							{
								"$ref": "#/components/schemas/AppStatus"
							}
						],
						"description": "The status of the event (e.g., start, in_progress, failed, success, cancelled, deploying, sleep, awake, down, up)"
					},
					"channels": {
						"items": {
							"$ref": "#/components/schemas/WebhookChannel"
						},
						"type": "array",
						"description": "A list of {IWebhook} channels."
					},
					"url": {
						"type": "string",
						"description": "Callback URL of a notification"
					},
					"readAt": {
						"type": "string",
						"format": "date-time",
						"description": "The date the user read or mark a notitication as read"
					},
					"references": {
						"$ref": "#/components/schemas/IDataReferences",
						"description": "Referenced data of a notification"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"Pick_IProject.Exclude_keyofIProject.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"createdBy": {
						"type": "string"
					},
					"lastUpdatedBy": {
						"type": "string"
					},
					"latestBuild": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IBuild"
							},
							{
								"type": "string"
							}
						],
						"description": "Latest build ID or DOCUMENT"
					},
					"archivedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Date when the project was archived (take down all deploy environments)"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"isDefault": {
						"type": "boolean"
					},
					"apiKey": {
						"type": "string"
					},
					"clientId": {
						"type": "string"
					},
					"clientSecret": {
						"type": "string"
					},
					"latestBuildTag": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						],
						"description": "Latest build tag of an application in this project"
					},
					"appSlugs": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "List of App slugs"
					},
					"apps": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"$ref": "#/components/schemas/IApp"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array",
						"description": "List of App IDs"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IProject.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IProject.Exclude_keyofIProject.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.ProjectDto": {
				"$ref": "#/components/schemas/Omit_IProject.keyofHiddenBodyKeys_"
			},
			"IQueryProjectsAndApps": {
				"properties": {
					"status": {
						"type": "boolean",
						"description": "Should check for item's status",
						"default": "false"
					},
					"id": {
						"type": "string",
						"description": "Find one item by `{ObjectID}`"
					},
					"_id": {
						"type": "string"
					},
					"search": {
						"type": "boolean",
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"default": "true"
					},
					"page": {
						"type": "number",
						"format": "double",
						"description": "Pagination"
					},
					"size": {
						"type": "number",
						"format": "double"
					},
					"limit": {
						"type": "number",
						"format": "double"
					},
					"skip": {
						"type": "number",
						"format": "double"
					}
				},
				"type": "object",
				"additionalProperties": false
			},
			"Pick_ICloudProvider.Exclude_keyofICloudProvider.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Cloud provider name"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"shortName": {
						"$ref": "#/components/schemas/CloudProviderType",
						"description": "Cloud provider short name, without spacing & special characters"
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials ti access services on this cloud provider\n- Apply for: Google Cloud, AWS,...\n- For example: Kubernetes Clusters, Single Sign-On,..."
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API access token to use services on this cloud provider\n- Apply for: Digital Ocean"
					},
					"clusters": {
						"anyOf": [
							{
								"items": {
									"type": "string"
								},
								"type": "array"
							},
							{
								"items": {
									"$ref": "#/components/schemas/ICluster"
								},
								"type": "array"
							}
						],
						"description": "List of available clusters on this provider"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ICloudProvider.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ICloudProvider.Exclude_keyofICloudProvider.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.CloudProviderDto": {
				"$ref": "#/components/schemas/Omit_ICloudProvider.keyofHiddenBodyKeys_"
			},
			"Pick_IContainerRegistry.Exclude_keyofIContainerRegistry.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"isDefault": {
						"type": "boolean",
						"description": "Is this a default git provider"
					},
					"host": {
						"type": "string",
						"description": "The host (domain) of your container registry which you are using."
					},
					"isVerified": {
						"type": "boolean"
					},
					"provider": {
						"$ref": "#/components/schemas/RegistryProviderType",
						"description": "Provider's \"shortName\""
					},
					"serviceAccount": {
						"type": "string",
						"description": "Content of the Service Account credentials ti access services on this cloud provider\n- Apply for: Google Cloud, AWS,...\n- For example: Kubernetes Clusters, Single Sign-On,..."
					},
					"apiAccessToken": {
						"type": "string",
						"description": "Content of the API access token to use services on this cloud provider\n- Apply for: Digital Ocean"
					},
					"organization": {
						"type": "string",
						"description": "Organization name in Docker Registry, or Project ID in Google/DigitalOcean Container Registry."
					},
					"imageBaseURL": {
						"type": "string",
						"description": "Base URL of the image, usually is the registry host URI combines with something else.\n- This will be used to combine with your project/app image path."
					},
					"dockerServer": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker registry server",
						"default": "https://index.docker.io/v1/"
					},
					"dockerEmail": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker email"
					},
					"dockerUsername": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker username"
					},
					"dockerPassword": {
						"type": "string",
						"description": "`[For Docker Registry]` Docker password"
					},
					"imagePullSecret": {
						"properties": {
							"value": {
								"type": "string"
							},
							"name": {
								"type": "string"
							}
						},
						"type": "object"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IContainerRegistry.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IContainerRegistry.Exclude_keyofIContainerRegistry.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.ContainerRegistryDto": {
				"$ref": "#/components/schemas/Omit_IContainerRegistry.keyofHiddenBodyKeys_"
			},
			"Pick_IRelease.Exclude_keyofIRelease.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"createdBy": {
						"type": "string"
					},
					"buildNumber": {
						"type": "number",
						"format": "double"
					},
					"projectSlug": {
						"type": "string"
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"app": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IApp"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the app"
					},
					"duration": {
						"type": "number",
						"format": "double",
						"description": "Deploy duration in miliseconds"
					},
					"startTime": {
						"type": "string",
						"format": "date-time",
						"description": "Deploy start time"
					},
					"endTime": {
						"type": "string",
						"format": "date-time",
						"description": "Deploy end time"
					},
					"env": {
						"type": "string",
						"description": "Targeted environment."
					},
					"message": {
						"type": "string",
						"description": "Release revision message"
					},
					"branch": {
						"type": "string"
					},
					"cliVersion": {
						"type": "string"
					},
					"status": {
						"$ref": "#/components/schemas/DeployStatus"
					},
					"appSlug": {
						"type": "string"
					},
					"cluster": {
						"type": "string",
						"description": "Cluster's slug"
					},
					"envVars": {
						"items": {
							"$ref": "#/components/schemas/KubeEnvironmentVariable"
						},
						"type": "array",
						"description": "Environment variables"
					},
					"namespace": {
						"type": "string"
					},
					"provider": {
						"type": "string"
					},
					"build": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IBuild"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the build"
					},
					"buildTag": {
						"type": "string"
					},
					"appVersion": {
						"type": "string"
					},
					"deploymentYaml": {
						"type": "string"
					},
					"prereleaseUrl": {
						"type": "string"
					},
					"screenshot": {
						"type": "string",
						"description": "URL of the webpage screenshot"
					},
					"prereleaseEnvironment": {
						"anyOf": [
							{
								"items": {},
								"type": "array"
							},
							{
								"type": "string"
							}
						],
						"description": "ONLY PRE-RELEASE - Environment variables"
					},
					"diginext": {
						"deprecated": true
					},
					"appConfig": {
						"$ref": "#/components/schemas/AppConfig"
					},
					"prodYaml": {
						"type": "string",
						"deprecated": true
					},
					"preYaml": {
						"type": "string"
					},
					"productionUrl": {
						"type": "string"
					},
					"endpoint": {
						"type": "string"
					},
					"providerProjectId": {
						"type": "string"
					},
					"buildStatus": {
						"$ref": "#/components/schemas/BuildStatus"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IRelease.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IRelease.Exclude_keyofIRelease.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.ReleaseDto": {
				"$ref": "#/components/schemas/Omit_IRelease.keyofHiddenBodyKeys_"
			},
			"Pick_IRole.Exclude_keyofIRole.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"type": {
						"type": "string",
						"description": "One of:\n- undefined | \"custom\": custom role\n- \"admin\"\t\t: \tdefault super admin role\n- \"moderator\"\t: \tdefault moderator role\n- \"member\"\t\t: \tdefault member role\n- \"guest\"\t\t: \tdefault guest role"
					},
					"routes": {
						"items": {
							"$ref": "#/components/schemas/RoleRoute"
						},
						"type": "array"
					},
					"maskedFields": {
						"items": {
							"type": "string"
						},
						"type": "array"
					}
				},
				"required": [
					"name",
					"routes"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IRole.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IRole.Exclude_keyofIRole.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.RoleDto": {
				"$ref": "#/components/schemas/Omit_IRole.keyofHiddenBodyKeys_"
			},
			"StorageProviderType": {
				"type": "string",
				"enum": [
					"aws_s3",
					"do_space",
					"gcloud"
				]
			},
			"Pick_ICloudStorage.Exclude_keyofICloudStorage.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"host": {
						"type": "string",
						"description": "The host (domain) of your cloud storage.",
						"example": "cdn.example.com"
					},
					"verified": {
						"type": "boolean"
					},
					"provider": {
						"$ref": "#/components/schemas/StorageProviderType"
					},
					"region": {
						"type": "string",
						"description": "Storage region"
					},
					"origin": {
						"type": "string",
						"description": "Storage origin URL",
						"example": "https://storage.googleapis.com/<project-id>"
					},
					"bucket": {
						"type": "string",
						"description": "Bucket name"
					},
					"auth": {
						"properties": {
							"key_secret": {
								"type": "string",
								"description": "### NOTE: For AWS S3 & DigitalOcean Space Storage\nYour AWS secret access key"
							},
							"key_id": {
								"type": "string",
								"description": "### NOTE: For AWS S3 & DigitalOcean Space Storage\nYour AWS access key ID"
							},
							"service_account": {
								"type": "string",
								"description": "### NOTE: For Google Cloud Storage\nJSON string containing \"client_email\" and \"private_key\" properties, or the external account client options."
							}
						},
						"type": "object",
						"description": "Authentication"
					}
				},
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ICloudStorage.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ICloudStorage.Exclude_keyofICloudStorage.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"Pick_ITeam.Exclude_keyofITeam.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_ITeam.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_ITeam.Exclude_keyofITeam.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"entities.TeamDto": {
				"$ref": "#/components/schemas/Omit_ITeam.keyofHiddenBodyKeys_"
			},
			"Pick_IUser.Exclude_keyofIUser.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"image": {
						"type": "string",
						"description": "User profile picture URL"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"type": {
						"type": "string"
					},
					"verified": {
						"type": "boolean",
						"description": "Is this user's email or phone verified?"
					},
					"email": {
						"type": "string",
						"description": "User email address"
					},
					"username": {
						"type": "string",
						"description": "Unique username of a user\nThis equavilent with \"slug\""
					},
					"providers": {
						"items": {
							"$ref": "#/components/schemas/ProviderInfo"
						},
						"type": "array",
						"description": "List of Cloud Providers which this user can access to"
					},
					"password": {
						"type": "string",
						"description": "User password (hashed)"
					},
					"dxUserId": {
						"type": "string",
						"description": "User ID in DXUP.DEV"
					},
					"token": {
						"$ref": "#/components/schemas/AccessTokenInfo",
						"description": "User token"
					},
					"roles": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IRole"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"activeRole": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/IRole"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"teams": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/ITeam"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"workspaces": {
						"items": {
							"anyOf": [
								{
									"$ref": "#/components/schemas/IWorkspace"
								},
								{
									"$ref": "#/components/schemas/Types.ObjectId"
								},
								{
									"type": "string"
								}
							]
						},
						"type": "array"
					},
					"activeWorkspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"allowAccess": {
						"$ref": "#/components/schemas/UserAccessPermissions",
						"description": "User access permission settings"
					},
					"settings": {
						"properties": {
							"notification": {
								"properties": {
									"deploy": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"build": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"app": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"project": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									},
									"workspace": {
										"items": {
											"$ref": "#/components/schemas/WebhookChannel"
										},
										"type": "array"
									}
								},
								"type": "object"
							}
						},
						"required": [
							"notification"
						],
						"type": "object",
						"description": "User settings"
					}
				},
				"required": [
					"name",
					"email"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IUser.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IUser.Exclude_keyofIUser.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"UserDto": {
				"$ref": "#/components/schemas/Omit_IUser.keyofHiddenBodyKeys_"
			},
			"UserJoinWorkspaceParams": {
				"properties": {
					"userId": {
						"type": "string",
						"description": "User ID"
					},
					"workspace": {
						"type": "string",
						"description": "Workspace's ID or slug"
					}
				},
				"required": [
					"userId",
					"workspace"
				],
				"type": "object",
				"additionalProperties": false
			},
			"exportPdf_1.ExportPDFOptions": {
				"properties": {
					"omitBackground": {
						"type": "boolean",
						"description": "Hides default white background and allows generating pdfs with transparency."
					},
					"displayHeaderFooter": {
						"type": "boolean"
					},
					"margin": {
						"properties": {
							"right": {
								"anyOf": [
									{
										"type": "string"
									},
									{
										"type": "number",
										"format": "double"
									}
								]
							},
							"left": {
								"anyOf": [
									{
										"type": "string"
									},
									{
										"type": "number",
										"format": "double"
									}
								]
							},
							"bottom": {
								"anyOf": [
									{
										"type": "string"
									},
									{
										"type": "number",
										"format": "double"
									}
								]
							},
							"top": {
								"anyOf": [
									{
										"type": "string"
									},
									{
										"type": "number",
										"format": "double"
									}
								]
							}
						},
						"type": "object"
					},
					"scale": {
						"type": "number",
						"format": "double"
					},
					"format": {
						"type": "string",
						"enum": [
							"letter",
							"legal",
							"tabloid",
							"ledger",
							"a0",
							"a1",
							"a2",
							"a3",
							"a4",
							"a5",
							"a6"
						]
					},
					"path": {
						"type": "string"
					},
					"printBackground": {
						"type": "boolean"
					},
					"viewport": {
						"properties": {
							"hasTouch": {
								"type": "boolean",
								"description": "Specify if the viewport supports touch events."
							},
							"isLandscape": {
								"type": "boolean",
								"description": "Specifies if the viewport is in landscape mode."
							},
							"isMobile": {
								"type": "boolean",
								"description": "Whether the `meta viewport` tag is taken into account."
							},
							"deviceScaleFactor": {
								"type": "number",
								"format": "double",
								"description": "Specify device scale factor.\nSee {@link https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio | devicePixelRatio} for more info."
							},
							"height": {
								"type": "number",
								"format": "double",
								"description": "The page height in pixels."
							},
							"width": {
								"type": "number",
								"format": "double",
								"description": "The page width in pixels."
							}
						},
						"required": [
							"height",
							"width"
						],
						"type": "object"
					}
				},
				"type": "object"
			},
			"screenshot_1.CaptureScreenshotOptions": {
				"properties": {
					"fromSurface": {
						"type": "boolean",
						"description": "Capture the screenshot from the surface, rather than the view.",
						"default": "true"
					},
					"captureBeyondViewport": {
						"type": "boolean",
						"description": "Capture the screenshot beyond the viewport.",
						"default": "true"
					},
					"encoding": {
						"type": "string",
						"enum": [
							"base64",
							"binary"
						],
						"description": "Encoding of the image.",
						"default": "binary"
					},
					"omitBackground": {
						"type": "boolean",
						"description": "Hides default white background and allows capturing screenshots with transparency.",
						"default": "false"
					},
					"quality": {
						"type": "number",
						"format": "double",
						"description": "Quality of the image, between 0-100. Not applicable to `png` images."
					},
					"clip": {
						"properties": {
							"scale": {
								"type": "number",
								"format": "double",
								"default": "1"
							},
							"height": {
								"type": "number",
								"format": "double"
							},
							"width": {
								"type": "number",
								"format": "double"
							},
							"y": {
								"type": "number",
								"format": "double"
							},
							"x": {
								"type": "number",
								"format": "double"
							}
						},
						"required": [
							"height",
							"width",
							"y",
							"x"
						],
						"type": "object",
						"description": "An object which specifies the clipping region of the page."
					},
					"fullPage": {
						"type": "boolean",
						"description": "When `true`, takes a screenshot of the full page.",
						"default": "false"
					},
					"path": {
						"type": "string",
						"description": "The file path to save the image to. The screenshot type will be inferred\nfrom file extension. If path is a relative path, then it is resolved\nrelative to current working directory. If no path is provided, the image\nwon't be saved to the disk."
					},
					"type": {
						"type": "string",
						"enum": [
							"png",
							"jpeg",
							"webp"
						],
						"default": "png"
					}
				},
				"type": "object"
			},
			"WebhookDto": {
				"properties": {
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"build": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced build"
					},
					"release": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced release"
					},
					"app": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced app"
					},
					"database": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database"
					},
					"databaseBackup": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced database backup"
					},
					"gitProvider": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced git provider"
					},
					"cluster": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced cluster"
					},
					"registry": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced container registry"
					},
					"framework": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced framework"
					},
					"team": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "#/components/schemas/ObjectId"
							}
						],
						"description": "Refferenced team"
					},
					"events": {
						"items": {
							"$ref": "#/components/schemas/SystemEvent"
						},
						"type": "array",
						"description": "Array of webhook events to subscribe to"
					},
					"consumers": {
						"items": {
							"type": "string"
						},
						"type": "array",
						"description": "Array of User ID",
						"default": "[]"
					},
					"channels": {
						"items": {
							"$ref": "#/components/schemas/WebhookChannel"
						},
						"type": "array",
						"description": "Array of webhook channels to receive",
						"default": "[\"email\"]"
					}
				},
				"required": [
					"events"
				],
				"type": "object",
				"additionalProperties": false
			},
			"WorkspaceInputData": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the workspace."
					},
					"owner": {
						"type": "string",
						"description": "User ID of the owner (default is the current authenticated user)"
					},
					"public": {
						"type": "boolean",
						"description": "Set privacy mode for this workspace",
						"default": "true"
					},
					"dx_key": {
						"type": "string",
						"description": "DXUP API Key"
					},
					"dx_id": {
						"type": "string",
						"description": "DXUP Workspace ID"
					}
				},
				"required": [
					"name"
				],
				"type": "object",
				"additionalProperties": false
			},
			"Partial_WorkspaceInputData_": {
				"properties": {
					"name": {
						"type": "string",
						"description": "Name of the workspace."
					},
					"owner": {
						"type": "string",
						"description": "User ID of the owner (default is the current authenticated user)"
					},
					"public": {
						"type": "boolean",
						"description": "Set privacy mode for this workspace",
						"default": "true"
					},
					"dx_key": {
						"type": "string",
						"description": "DXUP API Key"
					},
					"dx_id": {
						"type": "string",
						"description": "DXUP Workspace ID"
					}
				},
				"type": "object",
				"description": "Make all properties in T optional"
			},
			"InviteMemberData": {
				"properties": {
					"emails": {
						"items": {
							"type": "string"
						},
						"type": "array"
					},
					"role": {
						"type": "string"
					}
				},
				"required": [
					"emails"
				],
				"type": "object",
				"additionalProperties": false
			},
			"AddUserToWorkspaceParams": {
				"properties": {
					"userId": {
						"$ref": "#/components/schemas/Types.ObjectId"
					},
					"workspaceId": {
						"$ref": "#/components/schemas/Types.ObjectId"
					},
					"roleId": {
						"$ref": "#/components/schemas/Types.ObjectId"
					}
				},
				"required": [
					"userId",
					"workspaceId"
				],
				"type": "object",
				"additionalProperties": false
			},
			"IEnvVar": {
				"properties": {
					"_id": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"metadata": {},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"owner": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						],
						"description": "Owner ID of the app"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspace": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IWorkspace"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the workspace"
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"createdAt": {
						"type": "string",
						"format": "date-time",
						"description": "Created date"
					},
					"deletedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Deleted date"
					},
					"updatedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Updated date"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"name": {
						"type": "string"
					},
					"value": {
						"type": "string"
					},
					"description": {
						"type": "string"
					},
					"env": {
						"type": "string"
					},
					"appId": {
						"type": "string"
					}
				},
				"required": [
					"name",
					"value"
				],
				"type": "object",
				"additionalProperties": false
			},
			"Pick_IEnvVar.Exclude_keyofIEnvVar.keyofHiddenBodyKeys__": {
				"properties": {
					"name": {
						"type": "string"
					},
					"slug": {
						"type": "string",
						"description": "Slug of an item, generated automatically by its \"name\""
					},
					"active": {
						"type": "boolean"
					},
					"public": {
						"type": "boolean",
						"description": "`TRUE` -> any members can read\n`FALSE` -> only admins can read",
						"default": "true"
					},
					"ownerSlug": {
						"type": "string",
						"description": "Owner's username"
					},
					"ownerId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"project": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IProject"
							},
							{
								"type": "string"
							}
						],
						"description": "ID of the project"
					},
					"projectId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceId": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"workspaceSlug": {
						"type": "string",
						"description": "SLUG of the workspace"
					},
					"migratedAt": {
						"type": "string",
						"format": "date-time",
						"description": "Migrated date"
					},
					"updatedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"updatedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedBy": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"$ref": "#/components/schemas/IUser"
							},
							{
								"type": "string"
							}
						]
					},
					"deletedById": {
						"anyOf": [
							{
								"$ref": "#/components/schemas/Types.ObjectId"
							},
							{
								"type": "string"
							}
						]
					},
					"env": {
						"type": "string"
					},
					"value": {
						"type": "string"
					},
					"description": {
						"type": "string"
					},
					"appId": {
						"type": "string"
					}
				},
				"required": [
					"name",
					"value"
				],
				"type": "object",
				"description": "From T, pick a set of properties whose keys are in the union K"
			},
			"Omit_IEnvVar.keyofHiddenBodyKeys_": {
				"$ref": "#/components/schemas/Pick_IEnvVar.Exclude_keyofIEnvVar.keyofHiddenBodyKeys__",
				"description": "Construct a type with the properties of T except for those in type K."
			},
			"EnvVarDto": {
				"$ref": "#/components/schemas/Omit_IEnvVar.keyofHiddenBodyKeys_"
			}
		},
		"securitySchemes": {
			"api_key": {
				"type": "apiKey",
				"name": "x-api-key",
				"in": "header"
			},
			"jwt": {
				"type": "http",
				"scheme": "bearer",
				"bearerFormat": "JWT"
			}
		}
	},
	"info": {
		"title": "@topgroup/diginext",
		"version": "3.43.4",
		"description": "A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.",
		"license": {
			"name": "GPL-3.0"
		},
		"contact": {
			"name": "TOP GROUP (a.k.a Digitop)",
			"email": "dev@wearetopgroup.com",
			"url": "https://github.com/digitopvn/diginext"
		}
	},
	"openapi": "3.0.0",
	"paths": {
		"/app": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of apps",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/AppInputSchema"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Find one item by slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/AppDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/ssh-url": {
			"post": {
				"operationId": "CreateFromSshURL",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new app from a git repo SSH url",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"force": {
										"type": "boolean",
										"description": "### CAUTION\nIf `TRUE`, it will delete existing git repo and create a new one."
									},
									"gitProviderID": {
										"type": "string",
										"description": "Git provider ID to host the new repo of this app"
									},
									"sshUrl": {
										"type": "string",
										"description": "Git repo SSH url"
									}
								},
								"required": [
									"gitProviderID",
									"sshUrl"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/app/import-git": {
			"post": {
				"operationId": "ImportFromGitSshURL",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Import a git repo SSH url & create new app from it",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"force": {
										"type": "boolean",
										"description": "`DANGER`\n---\nDelete app and git repo if they were existed.",
										"default": "false"
									},
									"projectID": {
										"type": "string",
										"description": "Project ID of this app"
									},
									"gitBranch": {
										"type": "string",
										"description": "Select git branch to pull"
									},
									"gitProviderID": {
										"type": "string",
										"description": "Git provider ID to host the new repo of this app"
									},
									"sshUrl": {
										"type": "string",
										"description": "Git repo SSH url"
									},
									"name": {
										"type": "string",
										"description": "App's name"
									}
								},
								"required": [
									"gitProviderID",
									"sshUrl"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/app/participants": {
			"get": {
				"operationId": "Participants",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of participants in an app",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/app/archive": {
			"delete": {
				"operationId": "ArchiveApp",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Take down all deploy environments of this app on the clusters, then mark this app as \"archived\" in database.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/app/unarchive": {
			"patch": {
				"operationId": "UnarchiveApp",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Mark this app as \"unarchived\" in database.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/app/config": {
			"get": {
				"operationId": "GetAppConfig",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {},
													"type": "array"
												},
												"data": {
													"$ref": "#/components/schemas/AppConfig"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"data",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/environment": {
			"get": {
				"operationId": "GetDeployEnvironmentV2",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Get new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Create new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployEnvironmentData": {
										"$ref": "#/components/schemas/DeployEnvironmentData",
										"description": "`REQUIRES`\n---\nDeploy environment configuration"
									},
									"env": {
										"type": "string",
										"description": "`REQUIRES`\n---\nDeploy environment name",
										"default": "dev"
									},
									"appSlug": {
										"type": "string",
										"description": "`REQUIRES`\n---\nApp slug"
									}
								},
								"required": [
									"deployEnvironmentData",
									"env",
									"appSlug"
								],
								"type": "object"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "UpdateDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployEnvironmentData": {
										"$ref": "#/components/schemas/DeployEnvironmentData",
										"description": "`REQUIRES`\n---\nDeploy environment configuration"
									},
									"env": {
										"type": "string",
										"description": "`REQUIRES`\n---\nDeploy environment name",
										"default": "dev"
									},
									"appSlug": {
										"type": "string",
										"description": "`REQUIRES`\n---\nApp slug"
									}
								},
								"required": [
									"deployEnvironmentData",
									"env",
									"appSlug"
								],
								"type": "object"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Delete a deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"env": {
										"type": "string",
										"description": "Short name of deploy environment"
									},
									"slug": {
										"type": "string",
										"description": "App's slug (no need `id` or `_id` if using `slug`)"
									},
									"id": {
										"type": "string",
										"description": "[alias] App's ID (no need `slug` if using `id` or `_id`)"
									},
									"_id": {
										"type": "string",
										"description": "App's ID (no need `slug` if using `id` or `_id`)"
									}
								},
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/app/deploy_environment": {
			"get": {
				"operationId": "GetDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "[V2] Get new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateDeployEnvironmentV2",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/IApp"
								}
							}
						}
					}
				},
				"description": "[V2] Create new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"description": "`REQUIRES`\n---\nDeploy environment configuration",
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/DeployEnvironmentData",
								"description": "`REQUIRES`\n---\nDeploy environment configuration"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "UpdateDeployEnvironmentV2",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "[V2] Update new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"description": "`REQUIRES`\n---\nDeploy environment configuration",
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/DeployEnvironmentData",
								"description": "`REQUIRES`\n---\nDeploy environment configuration"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteDeployEnvironmentV2",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "[V2] Update new deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's SLUG",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/environment/variables": {
			"get": {
				"operationId": "GetEnvVarsOnDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {},
													"type": "array"
												},
												"data": {
													"items": {
														"properties": {
															"value": {
																"type": "string"
															},
															"name": {
																"type": "string"
															}
														},
														"required": [
															"value",
															"name"
														],
														"type": "object"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"data",
												"status"
											],
											"type": "object"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "Get list of variables on the deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateEnvVarsOnDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "Create new variables on the deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/CreateEnvVarsDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "UpdateEnvVarsOnDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Update environment variables on the deploy environment.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/UpdateEnvVarsDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteEnvVarsOnDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"data": {
													"items": {
														"properties": {
															"value": {
																"type": "string"
															},
															"name": {
																"type": "string"
															}
														},
														"required": [
															"value",
															"name"
														],
														"type": "object"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"data",
												"status"
											],
											"type": "object"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete variables on the deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"env": {
										"type": "string",
										"description": "Deploy environment name"
									},
									"slug": {
										"type": "string",
										"description": "App slug"
									}
								},
								"required": [
									"env",
									"slug"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/app/environment/domains": {
			"patch": {
				"operationId": "AddEnvironmentDomain",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "Update a variable on the deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"domains": {
										"items": {
											"type": "string"
										},
										"type": "array",
										"description": "New domains to be added into this deploy environment",
										"example": [
											"example.com",
											"www.example.com"
										]
									},
									"env": {
										"type": "string",
										"description": "Deploy environment name"
									}
								},
								"required": [
									"domains",
									"env"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/app/environment/logs": {
			"get": {
				"operationId": "ViewLogs",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "View app's container logs",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "App's deploy environment code (dev, prod,...)",
						"in": "query",
						"name": "env",
						"required": false,
						"schema": {
							"default": "\"dev\"",
							"type": "string"
						}
					},
					{
						"description": "App's slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/deploy_environment/down": {
			"delete": {
				"operationId": "TakeDownDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Take down a deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/deploy_environment/sleep": {
			"delete": {
				"operationId": "SleepDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Sleep a deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/deploy_environment/awake": {
			"patch": {
				"operationId": "AwakeDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Awake a sleeping deploy environment of the application.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/app/deploy_environment/volume": {
			"post": {
				"operationId": "AddVolumeToDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Add new volume to app's deploy environment.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"description": "`REQUIRES`\n---\nVolume configuration",
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Pick_DeployEnvironmentVolume.name-or-size-or-mountPath_",
								"description": "`REQUIRES`\n---\nVolume configuration"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "RemoveVolumeToDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Remove the volume of an app's deploy environment.",
				"tags": [
					"App"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Volume name",
						"in": "query",
						"name": "name",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Deploy environment name",
						"in": "query",
						"name": "env",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App slug",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "App's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/ask": {
			"get": {
				"operationId": "Get",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Ask AI"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/ask/generate/dockerfile": {
			"post": {
				"operationId": "GenerateDockerfile",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Ask AI to generate a Dockerfile",
				"tags": [
					"Ask AI"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"directoryStructure": {
										"type": "string",
										"description": "Directory structure in string"
									}
								},
								"required": [
									"directoryStructure"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/build": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of builds",
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.BuildDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.BuildDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/build/logs": {
			"get": {
				"operationId": "GetLogs",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/build/status": {
			"get": {
				"operationId": "GetStatus",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Check status then build container image finish.",
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/build/start": {
			"post": {
				"operationId": "StartBuild",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create a new {Build} instance, then start building container image.",
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/buildModule.StartBuildParams"
							}
						}
					}
				}
			}
		},
		"/build/stop": {
			"post": {
				"operationId": "StopBuild",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployStatus": {
										"$ref": "#/components/schemas/DeployStatus"
									},
									"status": {
										"$ref": "#/components/schemas/BuildStatus"
									},
									"slug": {
										"type": "string"
									}
								},
								"required": [
									"slug"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/build/rerun": {
			"post": {
				"operationId": "RerunBuild",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create a new {Build} instance, then start building container image.",
				"tags": [
					"Build"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Build's ID",
						"in": "query",
						"name": "_id",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Build's slug",
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/buildModule.RerunBuildParams"
							}
						}
					}
				}
			}
		},
		"/cluster": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of K8S clusters of a workspace",
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ClusterDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ClusterDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/cluster/all": {
			"get": {
				"operationId": "ReadAll",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of K8S clusters (include system default clusters)",
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/cluster/connect": {
			"get": {
				"operationId": "Connect",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Verify this cluster accessibility, then switch the current context to this cluster\n- Similar to `/verify`",
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/cluster/verify": {
			"get": {
				"operationId": "Verify",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Verify this cluster accessibility, **won't** switch the current context to this cluster\n- Similar to `/connect`",
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/cluster/image-pull-secret": {
			"post": {
				"operationId": "CreateImagePullSecret",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cluster"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/ContainerRegistrySecretOptions"
							}
						}
					}
				}
			}
		},
		"/cronjob": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudDatabase.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudDatabase.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/cronjob/schedule-at": {
			"post": {
				"operationId": "ScheduleAt",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Schedule a cronjob to be executed at a specific time",
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"time": {
										"type": "string",
										"format": "date-time",
										"description": "Scheduled time of the cronjob"
									},
									"request": {
										"$ref": "#/components/schemas/CronjobRequest",
										"description": "HTTP Request information"
									},
									"name": {
										"type": "string",
										"description": "Name"
									}
								},
								"required": [
									"time",
									"request",
									"name"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/cronjob/schedule-repeat": {
			"post": {
				"operationId": "ScheduleRepeat",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Schedule a cronjob to be executed repeatedly",
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"condition": {
										"$ref": "#/components/schemas/CronjonRepeatCondition",
										"description": "Recurrent job's conditions"
									},
									"repeat": {
										"$ref": "#/components/schemas/CronjobRepeat",
										"description": "Recurrent job configuration"
									},
									"request": {
										"$ref": "#/components/schemas/CronjobRequest",
										"description": "HTTP Request information"
									},
									"name": {
										"type": "string",
										"description": "Name"
									}
								},
								"required": [
									"condition",
									"repeat",
									"request",
									"name"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/cronjob/cancel": {
			"delete": {
				"operationId": "CancelCronjob",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Cancel a cronjob",
				"tags": [
					"Cronjob"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {},
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/database": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudDatabase.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudDatabase.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/database/healthz": {
			"get": {
				"operationId": "CheckConnection",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/database/backup": {
			"post": {
				"operationId": "Backup",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cloud Database ID",
						"in": "query",
						"name": "id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"name": {
										"type": "string",
										"description": "`[OPTIONAL]`\nBackup name"
									}
								},
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/database/restore": {
			"post": {
				"operationId": "Restore",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cloud Database Backup ID",
						"in": "query",
						"name": "id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/CloudDatabaseBackupDto"
							}
						}
					}
				}
			}
		},
		"/database/auto-backup": {
			"post": {
				"operationId": "ScheduleAutoBackup",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudDatabase"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "_id",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"condition": {
										"$ref": "#/components/schemas/CronjonRepeatCondition",
										"description": "Recurrent job's conditions"
									},
									"repeat": {
										"$ref": "#/components/schemas/CronjobRepeat",
										"description": "Recurrent job's configuration"
									}
								},
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/database-backup": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Database Backup"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Database Backup"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/CloudDatabaseBackupDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Database Backup"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/CloudDatabaseBackupDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Database Backup"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/deploy": {
			"post": {
				"operationId": "DeployFromSource",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"messages": {
													"items": {
														"type": "string"
													},
													"type": "array"
												},
												"status": {
													"type": "number",
													"format": "double"
												}
											},
											"required": [
												"messages",
												"status"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "### [DEPRECATED]\n#### Use `buildAndDeploy()` instead.\nBuild container image first, then deploy that build to target deploy environment.",
				"tags": [
					"Deploy"
				],
				"deprecated": true,
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"options": {
										"$ref": "#/components/schemas/InputOptions"
									}
								},
								"required": [
									"options"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/deploy/build-first": {
			"post": {
				"operationId": "BuildAndDeploy",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Build container image first, then deploy that build to target deploy environment.\n- `Alias of \"/api/v1/deploy/from-source\"`",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployParams": {
										"$ref": "#/components/schemas/DeployBuildParams"
									},
									"buildParams": {
										"$ref": "#/components/schemas/StartBuildParams"
									}
								},
								"required": [
									"deployParams",
									"buildParams"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/deploy/from-source": {
			"post": {
				"operationId": "BuildFromSourceAndDeploy",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Build container image first, then deploy that build to target deploy environment.\n- `Alias of \"/api/v1/deploy/build-first\"`",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployParams": {
										"$ref": "#/components/schemas/DeployBuildParams"
									},
									"buildParams": {
										"$ref": "#/components/schemas/StartBuildParams"
									}
								},
								"required": [
									"deployParams",
									"buildParams"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/deploy/from-app": {
			"post": {
				"operationId": "BuildFromAppAndDeploy",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Build container image from app's git repo and deploy it to target deploy environment.",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployParams": {
										"$ref": "#/components/schemas/DeployBuildParams"
									},
									"gitBranch": {
										"type": "string",
										"description": "Target git branch to build and deploy"
									},
									"appSlug": {
										"type": "string",
										"description": "App's slug"
									}
								},
								"required": [
									"deployParams",
									"gitBranch",
									"appSlug"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/deploy/from-git": {
			"post": {
				"operationId": "BuildFromGitRepoAndDeploy",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Build container image from app's git repo and deploy it to target deploy environment.\n- Flow: fork the git repo -> build from the new repo -> deploy to Diginext",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"deployParams": {
										"$ref": "#/components/schemas/DeployBuildParams"
									},
									"port": {
										"type": "string",
										"description": "Exposed port"
									},
									"clusterSlug": {
										"type": "string",
										"description": "Cluster's slug\n- **CAUTION: will take the default or random cluster if not specified**."
									},
									"gitBranch": {
										"type": "string",
										"description": "Target git branch to build and deploy"
									},
									"sshUrl": {
										"type": "string",
										"description": "Git repo SSH url"
									}
								},
								"required": [
									"deployParams",
									"port",
									"gitBranch",
									"sshUrl"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/deploy/from-build": {
			"post": {
				"operationId": "DeployFromBuild",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"data": {
													"$ref": "#/components/schemas/DeployBuildV2Result"
												},
												"status": {
													"type": "number",
													"format": "double"
												},
												"messages": {
													"items": {},
													"type": "array"
												}
											},
											"required": [
												"data",
												"status",
												"messages"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"description": "Deploy app to target environment from a \"success\" build.",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"allOf": [
									{
										"properties": {
											"buildSlug": {
												"type": "string",
												"description": "Build's slug"
											}
										},
										"required": [
											"buildSlug"
										],
										"type": "object"
									},
									{
										"$ref": "#/components/schemas/DeployBuildParams"
									}
								]
							}
						}
					}
				}
			}
		},
		"/deploy/from-release": {
			"post": {
				"operationId": "DeployFromRelease",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Deploy app to target environment from a release.",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"allOf": [
									{
										"properties": {
											"releaseSlug": {
												"type": "string",
												"description": "Release's slug"
											}
										},
										"required": [
											"releaseSlug"
										],
										"type": "object"
									},
									{
										"$ref": "#/components/schemas/DeployBuildParams"
									}
								]
							}
						}
					}
				}
			}
		},
		"/deploy/promote": {
			"post": {
				"operationId": "PromoteDeployEnvironment",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Promote a deploy environment to another deploy environment (default: \"production\").",
				"tags": [
					"Deploy"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/PromoteDeployEnvironmentOptions"
							}
						}
					}
				}
			}
		},
		"/deploy-environment": {
			"get": {
				"operationId": "GetDeployEnvironments",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Get list of deploy environments",
				"tags": [
					"DeployEnvironment"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "projectSlug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "appSlug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "env",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/deploy-environment/all": {
			"get": {
				"operationId": "GetAllDeployEnvironments",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Get list of deploy environments",
				"tags": [
					"DeployEnvironment"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "projectSlug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "appSlug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "env",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/domain": {
			"post": {
				"operationId": "CreateDiginextDomain",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new Diginext domain",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/dxDomain.CreateDiginextDomainParams"
							}
						}
					}
				}
			},
			"get": {
				"operationId": "GetDiginextDomains",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/GetDiginextDomainsResponse"
								}
							}
						}
					}
				},
				"description": "Get all Diginext domains",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/domain/records": {
			"get": {
				"operationId": "GetDiginextDomainRecords",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/GetDiginextDomainRecordsResponse"
								}
							}
						}
					}
				},
				"description": "Get all Diginext domain records",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"type": "boolean"
						}
					}
				]
			}
		},
		"/domain/records/{recordName}": {
			"get": {
				"operationId": "GetDiginextDomainRecordByName",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/GetDiginextDomainRecordsResponse"
								}
							}
						}
					}
				},
				"description": "Get a Diginext domain record by name",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "path",
						"name": "recordName",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "type",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			},
			"patch": {
				"operationId": "UpdateDiginextDomainRecord",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/UpdateDiginextDomainResponse"
								}
							}
						}
					}
				},
				"description": "Update a Diginext domain record",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "path",
						"name": "recordName",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "type",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/dxDomain.UpdateDiginextDomainData"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteDiginextDomainRecord",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Delete a Diginext domain record",
				"tags": [
					"Domain"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "path",
						"name": "recordName",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "type",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/framework": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of frameworks",
				"tags": [
					"Framework"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Framework"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/FrameworkDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Framework"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/FrameworkDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Framework"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/framework/trends": {
			"get": {
				"operationId": "GetGithubTrends",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of trending repositories on Github",
				"tags": [
					"Framework"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/git": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of GIT providers",
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/GitProviderDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/GitProviderDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/git/verify": {
			"get": {
				"operationId": "Verify",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/git/profile": {
			"get": {
				"operationId": "GetProfile",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/git/orgs": {
			"get": {
				"operationId": "GetListOrgs",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Git provider's SLUG¸¸¸",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/git/orgs/repos": {
			"get": {
				"operationId": "GetListOrgRepos",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List organization repositories",
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Git provider's SLUG¸¸¸",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateOrgRepo",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new repository in git provider organization",
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Git provider's SLUG¸¸¸",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/GitRepositoryDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteOrgRepo",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new repository in git provider organization",
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Git repository's SLUG¸¸¸",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/GitRepositoryDto"
							}
						}
					}
				}
			}
		},
		"/git/orgs/repos/branches": {
			"get": {
				"operationId": "ListRepoBranches",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Create new repository in git provider organization",
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Git repo's SLUG",
						"in": "query",
						"name": "repo",
						"required": true,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's SLUG",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Git provider's ID",
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/git/ssh/public-key": {
			"get": {
				"operationId": "GetPublicKey",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/git/ssh/create": {
			"post": {
				"operationId": "CreateKeysSSH",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"publicKey": {
										"type": "string"
									},
									"privateKey": {
										"type": "string"
									},
									"gitDomain": {
										"$ref": "#/components/schemas/GitProviderDomain"
									}
								},
								"required": [
									"publicKey",
									"privateKey",
									"gitDomain"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/git/ssh/generate": {
			"post": {
				"operationId": "GenerateSSH",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"publicKey": {
													"type": "string"
												}
											},
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/git/ssh/verify": {
			"post": {
				"operationId": "VerifySSH",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Git Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "provider",
						"required": true,
						"schema": {
							"$ref": "#/components/schemas/GitProviderType"
						}
					}
				]
			}
		},
		"/media/upload-to-cloud-storage": {
			"post": {
				"operationId": "UploadToCloudStorage",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"properties": {
										"provider": {
											"type": "string",
											"enum": [
												"cloudflare",
												"aws_s3",
												"do_space",
												"google"
											]
										},
										"publicUrl": {
											"type": "string"
										},
										"storageUrl": {
											"type": "string"
										},
										"path": {
											"type": "string"
										}
									},
									"required": [
										"provider",
										"publicUrl",
										"storageUrl",
										"path"
									],
									"type": "object"
								}
							}
						}
					}
				},
				"tags": [
					"Media"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"fileName": {
										"type": "string"
									},
									"file": {
										"type": "string",
										"format": "byte"
									}
								},
								"required": [
									"fileName",
									"file"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/monitor/nodes": {
			"get": {
				"operationId": "GetNodes",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"anyOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"items": {
												"$ref": "#/components/schemas/KubeNode"
											},
											"type": "array"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of nodes in a cluster",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/monitor/namespaces": {
			"get": {
				"operationId": "GetNamespaces",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of namespaces in a cluster",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateNamespace",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Create namespace in a cluster",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitorNamespaceCreateData"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteNamespace",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Create namespace in a cluster",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/namespaces/all": {
			"get": {
				"operationId": "AllNamespaceResources",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of all resources of a namespace in a cluster",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/monitor/services": {
			"get": {
				"operationId": "GetServices",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S services",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "CreateService",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Create service in a namespace",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"spec": {
										"properties": {
											"selector": {
												"properties": {
													"app": {
														"type": "string"
													}
												},
												"type": "object"
											},
											"ports": {
												"items": {
													"properties": {
														"targetPort": {
															"type": "number",
															"format": "double"
														},
														"port": {
															"type": "number",
															"format": "double"
														}
													},
													"type": "object"
												},
												"type": "array"
											},
											"type": {
												"type": "string"
											}
										},
										"type": "object",
										"description": "Spec"
									},
									"labels": {
										"properties": {},
										"additionalProperties": {
											"type": "string"
										},
										"type": "object",
										"description": "Labels"
									},
									"namespace": {
										"type": "string",
										"default": "\"default\""
									},
									"name": {
										"type": "string",
										"description": "Namespace's name"
									}
								},
								"required": [
									"spec",
									"name"
								],
								"type": "object"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "DeleteService",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete service in a namespace",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/ingresses": {
			"get": {
				"operationId": "GetIngresses",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S Ingress",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"delete": {
				"operationId": "DeleteIngresses",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete K8S Ingress",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/deployments": {
			"get": {
				"operationId": "GetDeploys",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S Deployment",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"delete": {
				"operationId": "DeleteDeploys",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete K8S Deployment",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/statefulsets": {
			"get": {
				"operationId": "GetStatefulSets",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S StatefulSet",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"delete": {
				"operationId": "DeleteStatefulSets",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete K8S StatefulSet",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/pods": {
			"get": {
				"operationId": "GetPods",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S Pod",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"delete": {
				"operationId": "DeletePods",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete K8S Pod",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/monitor/secrets": {
			"get": {
				"operationId": "GetSecrets",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "List of K8S Secret",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"delete": {
				"operationId": "DeleteSecrets",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Delete K8S Secret",
				"tags": [
					"Monitor"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Cluster's ID or SLUG",
						"in": "query",
						"name": "cluster",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Resource's name",
						"in": "query",
						"name": "name",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Namespace's name",
						"in": "query",
						"name": "namespace",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Filter by labels",
						"in": "query",
						"name": "labels",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Sort the results based on metadata.",
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Alias of `order`",
						"in": "query",
						"name": "sort",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Output data type (JSON or YAML)",
						"in": "query",
						"name": "output",
						"required": false,
						"schema": {
							"default": "\"json\"",
							"type": "string",
							"enum": [
								"json",
								"yaml"
							]
						}
					},
					{
						"description": "Return full data, default is `FALSE` and returns compact data.",
						"in": "query",
						"name": "full",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Debug mode enabling",
						"in": "query",
						"name": "isDebugging",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/MonitoringQueryOptions"
							}
						}
					}
				}
			}
		},
		"/notification": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/INotification"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/INotification"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/notification/read": {
			"patch": {
				"operationId": "MarkAsRead",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/INotification"
							}
						}
					}
				}
			}
		},
		"/notification/jojo": {
			"post": {
				"operationId": "SendToJojo",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Notification"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {}
						}
					}
				}
			}
		},
		"/project": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of projects",
				"tags": [
					"Project"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Project"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ProjectDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Project"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ProjectDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Project"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/project/with-apps": {
			"get": {
				"operationId": "GetProjectsAndApps",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"properties": {
												"data": {
													"items": {
														"$ref": "#/components/schemas/IProject"
													},
													"type": "array"
												}
											},
											"required": [
												"data"
											],
											"type": "object"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Project"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Should check for item's status",
						"in": "query",
						"name": "status",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "Pagination",
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					}
				]
			}
		},
		"/provider": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.CloudProviderDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.CloudProviderDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Cloud Provider"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/registry": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of container registry",
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ContainerRegistryDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ContainerRegistryDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/registry/all": {
			"get": {
				"operationId": "ReadAll",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of K8S clusters (include system default clusters)",
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/registry/connect": {
			"get": {
				"operationId": "Connect",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"properties": {
										"data": {},
										"messages": {
											"items": {
												"type": "string"
											},
											"type": "array"
										},
										"status": {
											"type": "number",
											"format": "double"
										}
									},
									"required": [
										"data",
										"messages",
										"status"
									],
									"type": "object"
								}
							}
						}
					}
				},
				"tags": [
					"Container Registry"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "slug",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/release": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of releases",
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ReleaseDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.ReleaseDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/release/from-app": {
			"post": {
				"operationId": "CreateFromApp",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"buildTag": {
										"type": "string",
										"description": "Build tag is image's tag (no special characters, eg. \"dot\" or \"comma\")"
									},
									"env": {
										"type": "string",
										"description": "Deploy environment"
									},
									"app": {
										"type": "string",
										"description": "App's slug"
									}
								},
								"required": [
									"buildTag",
									"env",
									"app"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/release/from-build": {
			"post": {
				"operationId": "CreateFromBuild",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"env": {
										"type": "string",
										"description": "Deploy environment"
									},
									"build": {
										"type": "string",
										"description": "Build's ID"
									}
								},
								"required": [
									"env",
									"build"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/release/rollout": {
			"patch": {
				"operationId": "Rollout",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"id": {
										"type": "string"
									}
								},
								"required": [
									"id"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/release/rollout-v2": {
			"patch": {
				"operationId": "RolloutV2",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"id": {
										"type": "string"
									}
								},
								"required": [
									"id"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/release/preview": {
			"patch": {
				"operationId": "PreviewPrerelease",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Release"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"id": {
										"type": "string"
									}
								},
								"required": [
									"id"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/role": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of roles",
				"tags": [
					"Role"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Role"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.RoleDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Role"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.RoleDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Role"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/route": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Get all routes",
				"tags": [
					"Route"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/route/permission": {
			"post": {
				"operationId": "CheckPermissions",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Check access permissions",
				"tags": [
					"Route"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"itemId": {
										"type": "string"
									},
									"route": {
										"type": "string"
									},
									"action": {
										"$ref": "#/components/schemas/IRoutePermission"
									}
								},
								"required": [
									"route",
									"action"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/stats/version": {
			"get": {
				"operationId": "Version",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Current version",
				"tags": [
					"Stats"
				],
				"security": [],
				"parameters": []
			}
		},
		"/stats/summary": {
			"get": {
				"operationId": "Summary",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "General stats",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/projects": {
			"get": {
				"operationId": "Projects",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count projects",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/apps": {
			"get": {
				"operationId": "Apps",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count apps",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/clusters": {
			"get": {
				"operationId": "Clusters",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count clusters",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/databases": {
			"get": {
				"operationId": "Databases",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count databases",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/gits": {
			"get": {
				"operationId": "Gits",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count git providers",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/registries": {
			"get": {
				"operationId": "Registries",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count registries",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/frameworks": {
			"get": {
				"operationId": "Frameworks",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count frameworks",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/users": {
			"get": {
				"operationId": "Users",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count users",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/builds": {
			"get": {
				"operationId": "Builds",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count builds",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/stats/releases": {
			"get": {
				"operationId": "Releases",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"description": "Count releases",
				"tags": [
					"Stats"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/storage": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudStorage"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudStorage"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudStorage.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudStorage"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Omit_ICloudStorage.keyofHiddenBodyKeys_"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"CloudStorage"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/team": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of teams",
				"tags": [
					"Team"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Team"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.TeamDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Team"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/entities.TeamDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Team"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/user": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of users",
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key2": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/UserDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/UserDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/user/profile": {
			"get": {
				"operationId": "Profile",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			}
		},
		"/user/assign-role": {
			"patch": {
				"operationId": "AssignRole",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"userId": {
										"type": "string"
									},
									"roleId": {
										"type": "string"
									}
								},
								"required": [
									"userId",
									"roleId"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/user/join-workspace": {
			"patch": {
				"operationId": "JoinWorkspace",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/UserJoinWorkspaceParams"
							}
						}
					}
				}
			}
		},
		"/user/permissions": {
			"patch": {
				"operationId": "UpdateAccessPermissions",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Update user's access permissions",
				"tags": [
					"User"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"description": "- Example: `{ userId: \"000\", resource: { \"projects\": \"1,2,3,4\", \"apps\": \"4,5,6\" } }`",
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"resource": {
										"properties": {},
										"additionalProperties": {
											"type": "string"
										},
										"type": "object",
										"description": "Resource data:\n- \"name\": `projects`, `apps`, `clusters`, `databases`, `database_backups`, `gits`, `frameworks`, `container_registries`\n- \"value\": List of resource IDs in string, separated by commas without spacing. For example: `123,456,789`"
									},
									"userSlug": {
										"type": "string",
										"description": "User slug"
									}
								},
								"required": [
									"resource",
									"userSlug"
								],
								"type": "object",
								"description": "- Example: `{ userId: \"000\", resource: { \"projects\": \"1,2,3,4\", \"apps\": \"4,5,6\" } }`"
							}
						}
					}
				}
			}
		},
		"/utility/export-pdf": {
			"post": {
				"operationId": "ExportWebpagePDF",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Export a webpage to PDF",
				"tags": [
					"Utility"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "url",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/exportPdf_1.ExportPDFOptions"
							}
						}
					}
				}
			}
		},
		"/utility/capture-screenshot": {
			"post": {
				"operationId": "CaptureScreenshot",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Capture a webpage screenshot",
				"tags": [
					"Utility"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"in": "query",
						"name": "url",
						"required": true,
						"schema": {
							"type": "string"
						}
					}
				],
				"requestBody": {
					"required": false,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/screenshot_1.CaptureScreenshotOptions"
							}
						}
					}
				}
			}
		},
		"/webhook": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Webhook"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Webhook"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/WebhookDto"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Webhook"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/IWebhook"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Webhook"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/workspace": {
			"get": {
				"operationId": "Read",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "List of workspaces",
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					},
					{
						"in": "query",
						"name": "page",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "size",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "limit",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"in": "query",
						"name": "skip",
						"required": false,
						"schema": {
							"format": "double",
							"type": "number"
						}
					},
					{
						"description": "Find one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "_id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Mark this request as search (return the similar results based on the filter query params)",
						"in": "query",
						"name": "search",
						"required": false,
						"schema": {
							"default": "true",
							"type": "boolean"
						}
					},
					{
						"description": "If `true`, return the excel binary file to download.",
						"in": "query",
						"name": "download",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				]
			},
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/WorkspaceInputData"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/Partial_WorkspaceInputData_"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/workspace/invite": {
			"post": {
				"operationId": "InviteMember",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/InviteMemberData"
							}
						}
					}
				}
			}
		},
		"/workspace/add-user": {
			"patch": {
				"operationId": "AddUser",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/AddUserToWorkspaceParams"
							}
						}
					}
				}
			}
		},
		"/workspace/service_account": {
			"get": {
				"operationId": "GetServiceAccounts",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "======================= SERVICE ACCOUNT ======================",
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "ID of Service Account",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/workspace/api_key": {
			"get": {
				"operationId": "GetApiKeyUsers",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "======================= API KEY USER ACCOUNT ======================",
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "ID of API key account",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		},
		"/workspace/update-package": {
			"post": {
				"operationId": "UpdatePackageWorkspace",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"new_key": {
										"type": "string"
									},
									"old_key": {
										"type": "string"
									}
								},
								"required": [
									"new_key",
									"old_key"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/workspace/is-owner-workspace": {
			"post": {
				"operationId": "IsOwnerWorkspace",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"allOf": [
										{
											"$ref": "#/components/schemas/ResponseData"
										},
										{
											"$ref": "#/components/schemas/IResponsePagination"
										}
									]
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"properties": {
									"workspace_id": {
										"type": "string"
									},
									"userId": {
										"type": "string"
									}
								},
								"required": [
									"workspace_id",
									"userId"
								],
								"type": "object"
							}
						}
					}
				}
			}
		},
		"/workspace/test-cloud-storage": {
			"post": {
				"operationId": "TestCloudStorage",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"Workspace"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": []
			}
		},
		"/env-var": {
			"post": {
				"operationId": "Create",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"description": "Get list of env vars",
				"tags": [
					"EnvVarController"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/IEnvVar"
							}
						}
					}
				}
			},
			"patch": {
				"operationId": "Update",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"EnvVarController"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Fields to populate, seperated by commas, for example: `owner,workspace`",
						"in": "query",
						"name": "populate",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "select",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"in": "query",
						"name": "order",
						"required": false,
						"schema": {
							"type": "string"
						},
						"example": "-updatedAt,-createdAt"
					},
					{
						"description": "Disable the default `{$set: body}` of \"update\" query & update `{body}` directly to the items",
						"in": "query",
						"name": "raw",
						"required": false,
						"schema": {
							"default": "false",
							"type": "boolean"
						}
					}
				],
				"requestBody": {
					"required": true,
					"content": {
						"application/json": {
							"schema": {
								"$ref": "#/components/schemas/EnvVarDto"
							}
						}
					}
				}
			},
			"delete": {
				"operationId": "Delete",
				"responses": {
					"200": {
						"description": "Ok",
						"content": {
							"application/json": {
								"schema": {
									"$ref": "#/components/schemas/ResponseData"
								}
							}
						}
					}
				},
				"tags": [
					"EnvVarController"
				],
				"security": [
					{
						"api_key": []
					},
					{
						"jwt": []
					}
				],
				"parameters": [
					{
						"description": "Delete one item by `{ObjectID}`",
						"in": "query",
						"name": "id",
						"required": false,
						"schema": {
							"type": "string"
						}
					},
					{
						"description": "Delete one item by `{slug}`",
						"in": "query",
						"name": "slug",
						"required": false,
						"schema": {
							"type": "string"
						}
					}
				]
			}
		}
	},
	"servers": [
		{
			"url": "/api/v1"
		}
	]
}