{"openapi":"3.0.3","info":{"title":"Game Hub API","version":"1.0.0","description":"独立小游戏平台后端；生产同域 Cookie 登录。所有写请求携带 X-GameHub-Request: 1。"},"components":{"securitySchemes":{"cookieAuth":{"type":"apiKey","in":"cookie","name":"__Host-gamehub_sid"}},"schemas":{"User":{"type":"object","required":["id","username","displayName","role","createdAt"],"properties":{"id":{"minLength":1,"maxLength":100,"type":"string"},"username":{"maxLength":20,"type":"string"},"displayName":{"maxLength":24,"type":"string"},"role":{"anyOf":[{"type":"string","enum":["player"]},{"type":"string","enum":["admin"]}]},"createdAt":{"type":"string"}}},"GameManifest":{"additionalProperties":false,"type":"object","required":["manifestVersion","saveSchemaVersion","saveSlots"],"properties":{"manifestVersion":{"type":"number","enum":[1]},"cover":{"minLength":1,"maxLength":300,"type":"string"},"saveSchemaVersion":{"minimum":1,"maximum":2147483647,"type":"integer"},"saveSlots":{"minimum":1,"maximum":100,"type":"integer"}}},"Game":{"type":"object","required":["id","slug","title","description","tags","sortOrder","published","currentReleaseId","coverUrl","launchUrl","saveCapabilities","createdAt","updatedAt"],"properties":{"id":{"minLength":1,"maxLength":100,"type":"string"},"slug":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"title":{"maxLength":100,"type":"string"},"description":{"maxLength":5000,"type":"string"},"tags":{"type":"array","items":{"maxLength":32,"type":"string"}},"sortOrder":{"type":"integer"},"published":{"type":"boolean"},"currentReleaseId":{"minLength":1,"maxLength":100,"type":"string","nullable":true},"coverUrl":{"type":"string","nullable":true},"launchUrl":{"type":"string","nullable":true},"saveCapabilities":{"type":"object","required":["maxSlots","maxBytes","schemaVersion"],"properties":{"maxSlots":{"type":"integer"},"maxBytes":{"type":"integer"},"schemaVersion":{"type":"integer"}}},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}}},"Release":{"type":"object","required":["id","gameId","sha256","archiveBytes","manifest","fileCount","createdAt","publishedAt"],"properties":{"id":{"minLength":1,"maxLength":100,"type":"string"},"gameId":{"minLength":1,"maxLength":100,"type":"string"},"sha256":{"type":"string"},"archiveBytes":{"type":"integer"},"manifest":{"$ref":"#/components/schemas/GameManifest"},"fileCount":{"type":"integer"},"createdAt":{"type":"string"},"publishedAt":{"type":"string","nullable":true}}},"SaveMeta":{"type":"object","required":["slot","schemaVersion","revision","updatedAt","sizeBytes"],"properties":{"slot":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"schemaVersion":{"type":"integer"},"revision":{"minimum":0,"maximum":9007199254740990,"type":"integer"},"updatedAt":{"type":"string"},"sizeBytes":{"type":"integer"}}},"Save":{"type":"object","required":["slot","schemaVersion","revision","updatedAt","sizeBytes","data"],"properties":{"slot":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"schemaVersion":{"type":"integer"},"revision":{"minimum":0,"maximum":9007199254740990,"type":"integer"},"updatedAt":{"type":"string"},"sizeBytes":{"type":"integer"},"data":{"type":"object","additionalProperties":{}}}},"SaveSummary":{"type":"object","required":["slot","schemaVersion","revision","updatedAt","sizeBytes","gameId","slug","gameTitle"],"properties":{"slot":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"schemaVersion":{"type":"integer"},"revision":{"minimum":0,"maximum":9007199254740990,"type":"integer"},"updatedAt":{"type":"string"},"sizeBytes":{"type":"integer"},"gameId":{"minLength":1,"maxLength":100,"type":"string"},"slug":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"gameTitle":{"type":"string"}}},"ApiError":{"type":"object","required":["error","requestId"],"properties":{"error":{"type":"object","required":["code","message"],"properties":{"code":{"type":"string"},"message":{"type":"string"},"details":{"type":"object","additionalProperties":{}}}},"requestId":{"type":"string"}}},"Ok":{"type":"object","required":["ok"],"properties":{"ok":{"type":"boolean","enum":[true]}}},"UserEnvelope":{"type":"object","required":["user"],"properties":{"user":{"anyOf":[{"$ref":"#/components/schemas/User"},{"type":"object","nullable":true,"enum":[null]}]}}},"GamePage":{"type":"object","required":["items","page","pageSize","total"],"properties":{"items":{"type":"array","items":{"$ref":"#/components/schemas/Game"}},"page":{"type":"integer"},"pageSize":{"type":"integer"},"total":{"type":"integer"}}},"SavePage":{"type":"object","required":["items","page","pageSize","total"],"properties":{"items":{"type":"array","items":{"$ref":"#/components/schemas/SaveSummary"}},"page":{"type":"integer"},"pageSize":{"type":"integer"},"total":{"type":"integer"}}},"SaveWrite":{"additionalProperties":false,"type":"object","required":["data","schemaVersion","expectedRevision"],"properties":{"data":{"type":"object","additionalProperties":{}},"schemaVersion":{"minimum":1,"maximum":2147483647,"type":"integer"},"expectedRevision":{"minimum":0,"maximum":9007199254740990,"type":"integer"}}},"GameCreate":{"additionalProperties":false,"type":"object","required":["slug","title"],"properties":{"slug":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"title":{"minLength":1,"maxLength":100,"type":"string"},"description":{"maxLength":5000,"type":"string"},"tags":{"maxItems":20,"uniqueItems":true,"type":"array","items":{"minLength":1,"maxLength":32,"type":"string"}},"sortOrder":{"minimum":-1000000,"maximum":1000000,"type":"integer"}}},"GamePatch":{"additionalProperties":false,"type":"object","properties":{"title":{"minLength":1,"maxLength":100,"type":"string"},"description":{"maxLength":5000,"type":"string"},"tags":{"maxItems":20,"uniqueItems":true,"type":"array","items":{"minLength":1,"maxLength":32,"type":"string"}},"sortOrder":{"minimum":-1000000,"maximum":1000000,"type":"integer"}},"minProperties":1},"Register":{"additionalProperties":false,"type":"object","required":["username","password"],"properties":{"username":{"pattern":"^[A-Za-z0-9_]{3,20}$","type":"string"},"password":{"minLength":8,"maxLength":128,"type":"string"},"displayName":{"minLength":1,"maxLength":24,"type":"string"}}},"Login":{"additionalProperties":false,"type":"object","required":["username","password"],"properties":{"username":{"minLength":1,"maxLength":20,"type":"string"},"password":{"minLength":1,"maxLength":128,"type":"string"}}}}},"paths":{"/api/v1/auth/register":{"post":{"operationId":"register","summary":"register","tags":["Auth"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["username","password"],"properties":{"username":{"pattern":"^[A-Za-z0-9_]{3,20}$","type":"string"},"password":{"minLength":8,"maxLength":128,"type":"string"},"displayName":{"minLength":1,"maxLength":24,"type":"string"}}}}}},"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[],"responses":{"201":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnvelope"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/auth/login":{"post":{"operationId":"login","summary":"login","tags":["Auth"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["username","password"],"properties":{"username":{"minLength":1,"maxLength":20,"type":"string"},"password":{"minLength":1,"maxLength":128,"type":"string"}}}}}},"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnvelope"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/auth/logout":{"post":{"operationId":"logout","summary":"logout","tags":["Auth"],"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ok"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/auth/logout-all":{"post":{"operationId":"logoutAll","summary":"logoutAll","tags":["Auth"],"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ok"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/auth/me":{"get":{"operationId":"getCurrentUser","summary":"getCurrentUser","tags":["Auth"],"security":[],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnvelope"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"patch":{"operationId":"updateProfile","summary":"updateProfile","tags":["Auth"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["displayName"],"properties":{"displayName":{"minLength":1,"maxLength":24,"type":"string"}}}}}},"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserEnvelope"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/auth/password":{"put":{"operationId":"changePassword","summary":"changePassword","tags":["Auth"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["oldPassword","newPassword"],"properties":{"oldPassword":{"minLength":1,"maxLength":128,"type":"string"},"newPassword":{"minLength":8,"maxLength":128,"type":"string"}}}}}},"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ok"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/games":{"get":{"operationId":"listGames","summary":"listGames","tags":["Games"],"parameters":[{"schema":{"minimum":1,"maximum":1000000,"default":1,"type":"integer"},"in":"query","name":"page","required":false},{"schema":{"minimum":1,"maximum":100,"default":20,"type":"integer"},"in":"query","name":"pageSize","required":false},{"schema":{"maxLength":100,"type":"string"},"in":"query","name":"q","required":false},{"schema":{"maxLength":32,"type":"string"},"in":"query","name":"tag","required":false}],"security":[],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GamePage"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/games/{slug}":{"get":{"operationId":"getGame","summary":"getGame","tags":["Games"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true}],"security":[],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/me/saves":{"get":{"operationId":"listMySaves","summary":"listMySaves","tags":["Saves"],"parameters":[{"schema":{"minimum":1,"maximum":1000000,"default":1,"type":"integer"},"in":"query","name":"page","required":false},{"schema":{"minimum":1,"maximum":100,"default":20,"type":"integer"},"in":"query","name":"pageSize","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SavePage"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/games/{slug}/saves":{"get":{"operationId":"listSaves","summary":"listSaves","tags":["Saves"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","required":["items"],"properties":{"items":{"type":"array","items":{"$ref":"#/components/schemas/SaveMeta"}}}}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/games/{slug}/saves/{slot}":{"get":{"operationId":"getSave","summary":"getSave","tags":["Saves"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"in":"path","name":"slot","required":true}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Save"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"put":{"operationId":"putSave","summary":"putSave","tags":["Saves"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["data","schemaVersion","expectedRevision"],"properties":{"data":{"type":"object","additionalProperties":{}},"schemaVersion":{"minimum":1,"maximum":2147483647,"type":"integer"},"expectedRevision":{"minimum":0,"maximum":9007199254740990,"type":"integer"}}}}}},"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"in":"path","name":"slot","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SaveMeta"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"delete":{"operationId":"deleteSave","summary":"deleteSave","tags":["Saves"],"parameters":[{"schema":{"minimum":0,"maximum":9007199254740990,"type":"integer"},"in":"query","name":"expectedRevision","required":true},{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"pattern":"^[A-Za-z0-9_-]{1,32}$","type":"string"},"in":"path","name":"slot","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ok"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/admin/games":{"get":{"operationId":"adminListGames","summary":"adminListGames","tags":["Admin"],"parameters":[{"schema":{"minimum":1,"maximum":1000000,"default":1,"type":"integer"},"in":"query","name":"page","required":false},{"schema":{"minimum":1,"maximum":100,"default":20,"type":"integer"},"in":"query","name":"pageSize","required":false},{"schema":{"maxLength":100,"type":"string"},"in":"query","name":"q","required":false},{"schema":{"maxLength":32,"type":"string"},"in":"query","name":"tag","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GamePage"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"post":{"operationId":"createGame","summary":"createGame","tags":["Admin"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["slug","title"],"properties":{"slug":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"title":{"minLength":1,"maxLength":100,"type":"string"},"description":{"maxLength":5000,"type":"string"},"tags":{"maxItems":20,"uniqueItems":true,"type":"array","items":{"minLength":1,"maxLength":32,"type":"string"}},"sortOrder":{"minimum":-1000000,"maximum":1000000,"type":"integer"}}}}}},"parameters":[{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"201":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/admin/games/{slug}":{"get":{"operationId":"adminGetGame","summary":"adminGetGame","tags":["Admin"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"patch":{"operationId":"updateGame","summary":"updateGame","tags":["Admin"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","properties":{"title":{"minLength":1,"maxLength":100,"type":"string"},"description":{"maxLength":5000,"type":"string"},"tags":{"maxItems":20,"uniqueItems":true,"type":"array","items":{"minLength":1,"maxLength":32,"type":"string"}},"sortOrder":{"minimum":-1000000,"maximum":1000000,"type":"integer"}},"minProperties":1}}}},"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/admin/games/{slug}/releases":{"get":{"operationId":"listReleases","summary":"listReleases","tags":["Admin"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","required":["items"],"properties":{"items":{"type":"array","items":{"$ref":"#/components/schemas/Release"}}}}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}},"post":{"operationId":"uploadRelease","summary":"uploadRelease","tags":["Admin"],"description":"multipart/form-data，唯一字段 file 为 ZIP；最大 50 MiB（可配置）。","parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"201":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Release"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}},"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["file"],"properties":{"file":{"type":"string","format":"binary"}}}}}}}},"/api/v1/admin/games/{slug}/publish":{"post":{"operationId":"publishRelease","summary":"publishRelease","tags":["Admin"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"type":"object","required":["releaseId"],"properties":{"releaseId":{"format":"uuid","type":"string"}}}}}},"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}},"/api/v1/admin/games/{slug}/unpublish":{"post":{"operationId":"unpublishGame","summary":"unpublishGame","tags":["Admin"],"parameters":[{"schema":{"pattern":"^[a-z0-9]+(?:-[a-z0-9]+)*$","minLength":1,"maxLength":64,"type":"string"},"in":"path","name":"slug","required":true},{"schema":{"type":"string","enum":["1"]},"in":"header","name":"x-gamehub-request","required":true},{"schema":{"minLength":8,"maxLength":128,"pattern":"^[A-Za-z0-9_-]+$","type":"string"},"in":"header","name":"idempotency-key","required":false},{"schema":{"minLength":1,"maxLength":100,"type":"string"},"in":"header","name":"x-gamehub-user","required":false}],"security":[{"cookieAuth":[]}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Game"}}}},"400":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"401":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"403":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"404":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"409":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"413":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"415":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"429":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"500":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}},"503":{"description":"Default Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiError"}}}}}}}},"servers":[{"url":"https://games.dkz12345.com"}]}