mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
22 lines
471 B
JSON
22 lines
471 B
JSON
{
|
|
"type" : "object",
|
|
"$schema" : "http://json-schema.org/draft-06/schema",
|
|
"title" : "Lobby protocol: leaveGameRoom",
|
|
"description" : "Sent by server when player disconnects from the game room",
|
|
"required" : [ "type", "accountID" ],
|
|
"additionalProperties" : false,
|
|
|
|
"properties" : {
|
|
"type" :
|
|
{
|
|
"type" : "string",
|
|
"const" : "leaveGameRoom"
|
|
},
|
|
"accountID" :
|
|
{
|
|
"type" : "string",
|
|
"description" : "ID of account that have left the room"
|
|
}
|
|
}
|
|
}
|