1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-26 22:57:00 +02:00
vcmi/config/schemas/lobbyProtocol/gameStarted.json

18 lines
342 B
JSON
Raw Normal View History

2024-03-13 23:03:13 +02:00
{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: gameStarted",
"description" : "Sent by match server to lobby on starting gameplay",
"required" : [ "type" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "gameStarted"
}
}
}