{"openapi":"3.0.3","info":{"title":"Pluto BaaS API","description":"Self-hosted Backend-as-a-Service. Auth, Postgres REST, Storage, Realtime, Functions, Jobs, and more.\n\n## Error envelope\n\nAll errors share a single shape (see `components.schemas.ApiError`):\n\n```json\n{\n  \"error\": \"ValidationError\",\n  \"message\": \"name: Required\",\n  \"code\": \"validation_failed\",\n  \"statusCode\": 400,\n  \"traceId\": \"cli_9f8e...\",\n  \"fields\": { \"name\": \"Required\" }\n}\n```\n\nEvery response echoes the correlation ID on `x-request-id` and `x-correlation-id`. See `docs/api-errors.md` for the full contract.","version":"0.1.0","contact":{"name":"Pluto","url":"https://api.timescard.cloud"},"license":{"name":"MIT"}},"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"},"apiKey":{"type":"apiKey","in":"header","name":"apikey"}},"schemas":{"ApiError":{"type":"object","required":["error","message","statusCode"],"properties":{"error":{"type":"string","example":"ValidationError","description":"Machine-readable error class."},"message":{"type":"string","example":"name: String must contain at least 1 character(s)","description":"Friendly, user-safe summary."},"code":{"type":"string","nullable":true,"example":"validation_failed","description":"Stable machine code (Postgres SQLSTATE for DB errors)."},"hint":{"type":"string","nullable":true,"description":"Optional operator hint."},"detail":{"type":"string","nullable":true,"description":"Optional low-level detail (safe to display)."},"statusCode":{"type":"integer","example":400},"traceId":{"type":"string","nullable":true,"example":"cli_9f8e...4c","description":"Correlation ID — echoed on x-request-id / x-correlation-id."},"fields":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Field-level validation messages, keyed by dotted path.","example":{"name":"String must contain at least 1 character(s)","meta.slug":"Invalid slug"}}}}},"parameters":{"RequestId":{"name":"x-request-id","in":"header","required":false,"description":"Optional caller-supplied correlation ID. If omitted, the server mints one. Echoed on the response.","schema":{"type":"string","maxLength":128,"example":"cli_9f8e2d13-4c5b-4c6f-98a3-e2c1d0ab77f0"}}},"responses":{"BadRequest":{"description":"Validation failed — see `fields` for per-input messages.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"ValidationError","message":"name: Required","code":"validation_failed","statusCode":400,"traceId":"cli_...","fields":{"name":"Required"}}}}},"Unauthorized":{"description":"Missing or invalid credentials.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"UnauthorizedError","message":"Please sign in to continue.","statusCode":401,"traceId":"cli_..."}}}},"Forbidden":{"description":"Authenticated but not permitted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"ForbiddenError","message":"You do not have permission to perform this action.","code":"42501","statusCode":403,"traceId":"cli_..."}}}},"NotFound":{"description":"Resource or route not found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"NotFound","message":"The requested endpoint does not exist.","statusCode":404,"traceId":"cli_..."}}}},"Conflict":{"description":"Uniqueness / foreign-key conflict.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"DatabaseError","message":"That value already exists — please choose another.","code":"23505","statusCode":409,"traceId":"cli_..."}}}},"PayloadTooLarge":{"description":"Uploaded file or body exceeds the size limit.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"UploadError","message":"The uploaded file is 42.10 MiB — the maximum is 20.0 MiB.","code":"file_too_large","statusCode":413,"traceId":"cli_...","fields":{"file":"The uploaded file is 42.10 MiB — the maximum is 20.0 MiB."}}}}},"UnsupportedMediaType":{"description":"Uploaded file type is not accepted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"UploadError","message":"Files of type \"application/x-msdownload\" are not accepted.","code":"unsupported_media_type","statusCode":415,"traceId":"cli_...","fields":{"file":"Files of type \"application/x-msdownload\" are not accepted."}}}}},"TooManyRequests":{"description":"Rate limit exceeded.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"RateLimitError","message":"Too many requests — please slow down and try again.","statusCode":429,"traceId":"cli_..."}}}},"InternalError":{"description":"Unhandled server error. Grep server logs for `traceId`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"},"example":{"error":"InternalError","message":"Something went wrong on our side. Please try again.","statusCode":500,"traceId":"cli_..."}}}}},"headers":{"XRequestId":{"description":"Correlation ID for this response (matches `body.traceId`).","schema":{"type":"string"}}}},"paths":{"/openapi.json":{"get":{"tags":["openapi.json"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/livez":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/readyz":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/health/deps":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/health/migrations":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/health/migrations/required":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/healthz":{"get":{"tags":["health"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/health":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/rest/v1/health":{"get":{"tags":["rest"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/health":{"get":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/health":{"get":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/jobs/v1/health":{"get":{"tags":["jobs"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/health":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/health":{"get":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/v1/health":{"get":{"tags":["v1"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/signup":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/token":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/logout":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/user":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"put":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/recover":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/verify":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/settings":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/jwks":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/rest/v1/{table}":{"get":{"tags":["rest"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["rest"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["rest"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["rest"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/rest/v1/rpc/{fn}":{"post":{"tags":["rest"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"fn","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/bucket":{"get":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/bucket/{id}":{"get":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"put":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/object/list/{bucketId}":{"get":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/object/{bucketId}/{*}":{"post":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"get":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/object/sign/{bucketId}/{*}":{"post":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/object/upload/sign/{bucketId}/{*}":{"post":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/object/public/{bucketId}/{*}":{"get":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"bucketId","required":true},{"schema":{"type":"string"},"in":"path","name":"*","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/broadcast":{"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/health":{"get":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/whoami":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/members":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/members/{userId}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"userId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"userId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/keys":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/keys/{keyId}/revoke":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"keyId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/keys/{keyId}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"keyId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/keys/check-conflict":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/workspaces/{id}/keys/resolve-conflict":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/db/api-keys-index":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/members":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/members/{userId}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"userId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/keys":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/keys/{keyId}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"keyId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/keys/{keyId}/rotate":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"keyId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/users":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/stats":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/users/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/settings":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"put":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/settings/{key}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"key","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1":{"get":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/{id}":{"get":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/invoke/{slug}":{"get":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"head":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"trace":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"options":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"put":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"query":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/p/{projectSlug}/{fnSlug}":{"get":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"head":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"trace":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"options":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"put":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"query":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"projectSlug","required":true},{"schema":{"type":"string"},"in":"path","name":"fnSlug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/audit":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/audit/{id}":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/schema/tables/{schema}/{table}/indexes":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"schema","required":true},{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/schema/tables/{schema}/{table}/constraints":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"schema","required":true},{"schema":{"type":"string"},"in":"path","name":"table","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/schema/indexes":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/schema/constraints":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/grants":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/grants/{grantId}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"grantId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/migrations/history":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/migrations":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/migrations/{id}":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/migrations/{id}/apply":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/migrations/{id}/rollback":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/sql/run":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/sql/exec":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/sql/classify":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/backups":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/backups/{id}/download":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/backups/{id}/restore":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/backup-schedules":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/backup-schedules/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks/{id}/rotate":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks/{id}/test":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks/{id}/deliveries":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/deliveries/{id}/retry":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/webhooks/verify":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/fts":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/fts/enable":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/fts/query":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/vector":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/vector/enable":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/search/vector/query":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/usage":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/quotas":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/quotas/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/alerts":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/alerts/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/branches":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/branches/{id}/diff":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/branches/{id}/promote":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/branches/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/graphql/config":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/graphql/enable":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/graphql/sdl":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/graphql/v1/{project_id}":{"post":{"tags":["graphql"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"project_id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/sdk/generate":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/oauth/providers":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/oauth/providers/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/oauth/{provider}/authorize":{"get":{"tags":["auth"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"provider","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/oauth/{provider}/callback":{"get":{"tags":["auth"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"provider","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/mfa/enroll":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/mfa/verify":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/mfa/factors":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/mfa/factors/{id}":{"delete":{"tags":["auth"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/mfa/challenge":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/saml/providers":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/saml/metadata":{"get":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/saml/acs":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/{id}/members":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/members":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/{org}/members/{user}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"org","required":true},{"schema":{"type":"string"},"in":"path","name":"user","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/{id}/invites":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/invites":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/invites/accept":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/orgs/invites/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{project}/api-keys":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"project","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/api-keys":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/api-keys/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/channels":{"get":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/channels/{id}":{"delete":{"tags":["realtime"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/publish":{"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/history":{"get":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/presence":{"get":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/presence/track":{"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/presence/untrack":{"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/realtime/v1/presence/sweep":{"post":{"tags":["realtime"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/policies":{"get":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/policies/{id}":{"delete":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/resumable/init":{"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/resumable/{uploadId}":{"get":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"uploadId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/resumable/part":{"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/resumable/complete":{"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/resumable/abort":{"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/transforms":{"get":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/transforms/{id}":{"delete":{"tags":["storage"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/storage/v1/transforms/sign":{"post":{"tags":["storage"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/secrets":{"get":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/secrets/{id}":{"delete":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/cron":{"get":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/cron/{id}":{"patch":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["functions"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/functions/v1/logs":{"post":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"get":{"tags":["functions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/queues":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/queues/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs/claim":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs/{id}/ack":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs/{id}/nack":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs/{id}/requeue":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/jobs/sweep":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/keys":{"get":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/keys/{id}":{"delete":{"tags":["ai"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/chat":{"post":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/embeddings":{"post":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/logs":{"get":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/costs":{"get":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/embed-jobs/enqueue":{"post":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/embed-jobs/tick":{"post":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/ai/v1/embed-jobs":{"get":{"tags":["ai"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/replicas":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/replicas/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/replicas/{id}/probe":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/replicas/probe-all":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/replicas/route":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/pii/columns":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/pii/columns/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/pii/scan":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dsar":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dsar/{id}/run":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/retention":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/retention/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/retention/{id}/run":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/audit-seals":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/audit-seals/verify":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/keys":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/keys/rotate":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/secrets":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/secrets/{id}/versions":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/secrets/{id}/reveal":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/secrets/{id}/rotate":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/secrets/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/access-log":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/db-credentials":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/vault/db-credentials/{id}/revoke":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/tables":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/columns":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/erd":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/rows":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"patch":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/export.csv":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/import.csv":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/snippets":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/snippets/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/queries":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/queries/{id}/run":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/studio/queries/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/extensions":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/extensions/{slug}":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"slug","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/installed":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/install":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/installed/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/dispatch":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/marketplace/events":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/jobs/v1/tokens":{"get":{"tags":["jobs"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["jobs"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/jobs/v1/tokens/{id}":{"delete":{"tags":["jobs"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/jobs/v1/exec":{"post":{"tags":["jobs"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/jobs/v1/rpc/{job}":{"post":{"tags":["jobs"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"job","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/cors/origins":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/cors/origins/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/cors/origins/reload":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/signup-full":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/domains":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/projects/{id}/domains/{oid}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true},{"schema":{"type":"string"},"in":"path","name":"oid","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/invite":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/auth/v1/accept-invite":{"post":{"tags":["auth"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/scopes":{"get":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/coverage":{"get":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/tokens":{"get":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/tokens/{id}":{"delete":{"tags":["tokens"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/tokens/{id}/rotate":{"post":{"tags":["tokens"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/tokens/bulk-revoke":{"post":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/tokens/v1/whoami":{"get":{"tags":["tokens"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/health":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/connections":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/connections/{id}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/connections/test":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/import/dump":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/import/schema":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/import/csv":{"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/jobs":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/jobs/{id}":{"get":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/export/sql":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/grants":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/grants/{userId}":{"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"userId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/dbio/whoami":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admissions/v1/search":{"get":{"tags":["admissions"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/traces/{traceId}":{"get":{"tags":["admin"],"description":"Fetch a captured error event by traceId (redacted).","parameters":[{"schema":{"type":"string"},"in":"path","name":"traceId","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/traces":{"get":{"tags":["admin"],"description":"List captured error events (redacted) with filters + keyset pagination.","responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/traces/stats":{"get":{"tags":["admin"],"description":"Bucketed error-rate trends (5xx, 4xx, validation_failed) for the trend chart.","responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/pii-rules":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/pii-rules/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/alert-webhooks":{"get":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"post":{"tags":["admin"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/alert-webhooks/{id}":{"patch":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}},"delete":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/admin/v1/alert-webhooks/{id}/test":{"post":{"tags":["admin"],"parameters":[{"schema":{"type":"string"},"in":"path","name":"id","required":true}],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}},"/":{"get":{"tags":["root"],"responses":{"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/BadRequest"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Unauthorized"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Forbidden"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/NotFound"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/Conflict"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/PayloadTooLarge"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/UnsupportedMediaType"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/TooManyRequests"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/responses/InternalError"}}}}}}}},"servers":[{"url":"http://localhost:3000","description":"Local"},{"url":"https://api.timescard.cloud","description":"Production"}],"tags":[{"name":"health","description":"Liveness & readiness probes"},{"name":"auth","description":"Sign-up / sign-in / tokens"},{"name":"rest","description":"Postgres REST (PostgREST-compatible)"},{"name":"storage","description":"S3-backed object storage"},{"name":"realtime","description":"WebSocket + broadcast channels"},{"name":"functions","description":"Edge / serverless functions"},{"name":"jobs","description":"Background jobs & workflows"},{"name":"admin","description":"Admin surface (service-role only)"}]}