1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/config/schemas/lobbyProtocol/sendChatMessage.json

22 lines
482 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: sendChatMessage",
"description" : "Sent by client when player requests lobby login",
"required" : [ "accountID", "accountCookie", "language", "version" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "sendChatMessage"
},
"messageText" :
{
"type" : "string",
"description" : "Text of sent message"
}
}
}