1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/schemas/lobbyProtocol/changeRoomDescription.json
2024-03-27 13:10:55 +02:00

22 lines
485 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: changeRoomDescription",
"description" : "Sent by server when currently selected map changes",
"required" : [ "type", "description" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "changeRoomDescription"
},
"description" :
{
"type" : "string",
"description" : "Human-readable description of the room"
}
}
}