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

18 lines
342 B
JSON

{
"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"
}
}
}