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

22 lines
484 B
JSON
Raw Normal View History

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: sendInvite",
"description" : "Sent by client when player invites another player into his current game room",
"required" : [ "type", "accountID" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "sendInvite"
},
"accountID" :
{
"type" : "string",
"description" : "ID of account to invite into the room"
}
}
}