serverProxyLogin.json 792 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-06/schema",
  4. "title" : "Lobby protocol: serverProxyLogin",
  5. "description" : "Sent by match server to establish proxy connection to be used by player",
  6. "required" : [ "type", "gameRoomID", "guestAccountID", "accountCookie" ],
  7. "additionalProperties" : false,
  8. "properties" : {
  9. "type" :
  10. {
  11. "type" : "string",
  12. "const" : "serverProxyLogin"
  13. },
  14. "gameRoomID" :
  15. {
  16. "type" : "string",
  17. "description" : "ID of server game room to login with"
  18. },
  19. "guestAccountID" :
  20. {
  21. "type" : "string",
  22. "description" : "Account ID of player that should use this connection"
  23. },
  24. "accountCookie" :
  25. {
  26. "type" : "string",
  27. "description" : "Secret UUID for identification of account that hosts match server"
  28. }
  29. }
  30. }