C2S (7): send, join, part, nick, topic, mode, ping
S2C (12): message, dm, notice, join, part, quit, nick, topic, mode, system, error, pong
S2S (6): relay, link, unlink, sync, ping, pong
Each message type has its own schema file under schema/{c2s,s2c,s2s}/.
schema/README.md provides an index of all types with descriptions.
15 lines
418 B
JSON
15 lines
418 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://git.eeqj.de/sneak/chat/schema/c2s/ping.json",
|
|
"title": "C2S Ping",
|
|
"description": "Client keepalive. Server responds with a pong.",
|
|
"type": "object",
|
|
"properties": {
|
|
"token": {
|
|
"type": "string",
|
|
"description": "Optional opaque token echoed back in the pong response."
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|