1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/schemas/lobbyProtocol/joinGameRoom.json

22 lines
455 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: joinGameRoom",
"description" : "Sent by client when player attempts to join a game room",
"required" : [ "type", "gameRoomID" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "joinGameRoom"
},
"gameRoomID" :
{
"type" : "string",
"description" : "ID of game room to join"
}
}
}