{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/quit.schema.json", "title": "QUIT (S2C)", "description": "User disconnected", "$ref": "../message.schema.json", "properties": { "command": { "const": "QUIT" }, "body": { "type": "array", "items": { "type": "string" }, "description": "Quit message" } }, "required": [ "command", "from" ] }