{"openapi":"3.1.0","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"https://dev.api.play.cogisia.com","description":"Generated server url"}],"paths":{"/api/games/{id}/state":{"put":{"tags":["game-state-controller"],"operationId":"updateState","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GameStateUpdateRequest"}}},"required":true},"responses":{"200":{"description":"OK"}}}},"/api/games":{"get":{"tags":["game-controller"],"operationId":"getAll","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/GameResponse"}}}}}}},"post":{"tags":["game-controller"],"operationId":"add","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GameCreateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GameResponse"}}}}}}},"/api/games/{id}":{"get":{"tags":["game-controller"],"operationId":"getById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GameResponse"}}}}}}}},"components":{"schemas":{"GameStateUpdateRequest":{"type":"object","properties":{"targetPlayerId":{"type":"string"},"action":{"type":"string","enum":["INCREASE","DECREASE","END"]},"property":{"type":"string","enum":["PLAYER_ATTACK","PLAYER_DEFENSE","PLAYER_LIFE","GAME_MOVE"]}},"required":["action","property","targetPlayerId"]},"GameCreateRequest":{"type":"object","properties":{"players":{"type":"array","items":{"$ref":"#/components/schemas/GameStatePlayerRequest"}},"options":{"$ref":"#/components/schemas/GameStateOptionRequest"}},"required":["options","players"]},"GameStateOptionRequest":{"type":"object","properties":{"HERO_MODE":{"type":"string","writeOnly":true},"hero_MODE":{"type":"string"}},"required":["hero_MODE"]},"GameStatePlayerRequest":{"type":"object","properties":{"name":{"type":"string"},"type":{"type":"string","enum":["BLUEHLAND","FREMDLAND","GROLLDONN","YOLORIEN"]},"hero":{"type":"string","enum":["MAGIER","PRIESTER","SCHUETZE","SPEICHER","TELEPORT","VIEZEKOENIG","WIESEL","NONE"]}},"required":["hero","name","type"]},"GameEventResponse":{"type":"object","properties":{"titleDE":{"type":"string"},"effectDE":{"type":"string"},"descriptionDE":{"type":"string"}},"required":["descriptionDE","effectDE","titleDE"]},"GameResponse":{"type":"object","properties":{"id":{"type":"string"},"state":{"$ref":"#/components/schemas/GameStateResponse"},"status":{"type":"string","enum":["ONGOING","DONE"]},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"}},"required":["startDate","state","status"]},"GameStatePlayerResponse":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string","enum":["BLUEHLAND","FREMDLAND","GROLLDONN","YOLORIEN"]},"team":{"type":"integer","format":"int32"},"hero":{"type":"string","enum":["MAGIER","PRIESTER","SCHUETZE","SPEICHER","TELEPORT","VIEZEKOENIG","WIESEL","NONE"]},"statsAttack":{"type":"integer","format":"int32"},"statsDefense":{"type":"integer","format":"int32"},"statsLife":{"type":"integer","format":"int32"}},"required":["hero","name","statsAttack","statsDefense","statsLife","team","type"]},"GameStateResponse":{"type":"object","properties":{"round":{"type":"integer","format":"int32"},"options":{"type":"object","additionalProperties":{"type":"string"}},"players":{"type":"array","items":{"$ref":"#/components/schemas/GameStatePlayerResponse"}},"currentPlayer":{"type":"string","enum":["BLUEHLAND","FREMDLAND","GROLLDONN","YOLORIEN"]},"currentEvent":{"$ref":"#/components/schemas/GameEventResponse"}},"required":["currentPlayer","options","players","round"]}}}}