1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/config/schemas/lobbyProtocol/accountJoinsRoom.json

22 lines
484 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: accountJoinsRoom",
"description" : "Sent by server to match server when new account joins the room",
"required" : [ "type", "accountID" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "accountJoinsRoom"
},
"accountID" :
{
"type" : "string",
"description" : "ID of account that have joined the room"
}
}
}