1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/schemas/lobbyProtocol/activeAccounts.json
2024-03-08 16:32:40 +02:00

46 lines
1008 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-06/schema",
"title" : "Lobby protocol: activeAccounts",
"description" : "Sent by server to initialized or update list of active accounts",
"required" : [ "type", "accounts" ],
"additionalProperties" : false,
"properties" : {
"type" :
{
"type" : "string",
"const" : "activeAccounts"
},
"accounts" :
{
"type" : "array",
"description" : "List of accounts that are currently online",
"items" :
{
"type" : "object",
"additionalProperties" : false,
"required" : [ "accountID", "displayName", "status" ],
"properties" : {
"accountID" :
{
"type" : "string",
"description" : "Unique ID of an account"
},
"displayName" :
{
"type" : "string",
"description" : "Display name of an account"
},
"status" :
{
"type" : "string",
"description" : "Current status of an account, such as in lobby or in match"
}
}
}
}
}
}