serverLoginSuccess.json 530 B

123456789101112131415161718192021
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-06/schema",
  4. "title" : "Lobby protocol: serverLoginSuccess",
  5. "description" : "Sent by server once server sucesfully logs into the lobby",
  6. "required" : [ "type", "accountCookie" ],
  7. "additionalProperties" : false,
  8. "properties" : {
  9. "type" :
  10. {
  11. "type" : "string",
  12. "const" : "serverLoginSuccess"
  13. },
  14. "accountCookie" :
  15. {
  16. "type" : "string",
  17. "description" : "Security cookie that should be stored by server and used for future operations"
  18. }
  19. }
  20. }