clientProxyLogin.json 724 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-06/schema",
  4. "title" : "Lobby protocol: clientProxyLogin",
  5. "description" : "Sent by client when player attempt to connect to game room in proxy mode",
  6. "required" : [ "type", "accountID", "accountCookie", "gameRoomID" ],
  7. "additionalProperties" : false,
  8. "properties" : {
  9. "type" :
  10. {
  11. "type" : "string",
  12. "const" : "clientProxyLogin"
  13. },
  14. "accountID" :
  15. {
  16. "type" : "string",
  17. "description" : "ID of existing account to login with"
  18. },
  19. "accountCookie" :
  20. {
  21. "type" : "string",
  22. "description" : "Secret UUID for identification"
  23. },
  24. "gameRoomID" :
  25. {
  26. "type" : "string",
  27. "description" : "ID of game room to connect to"
  28. }
  29. }
  30. }