mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"type" : "object",
|
|
"$schema" : "http://json-schema.org/draft-06/schema",
|
|
"title" : "Lobby protocol: declineInvite",
|
|
"description" : "Sent by client when player declines invite to join a room",
|
|
"required" : [ "type", "gameRoomID" ],
|
|
"additionalProperties" : false,
|
|
|
|
"properties" : {
|
|
"type" :
|
|
{
|
|
"type" : "string",
|
|
"const" : "declineInvite"
|
|
},
|
|
"gameRoomID" :
|
|
{
|
|
"type" : "string",
|
|
"description" : "ID of game room to decline invite"
|
|
}
|
|
}
|
|
}
|