{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/quit.json", "title": "S2C Quit", "description": "A user disconnected from the server.", "type": "object", "properties": { "id": { "type": "integer" }, "type": { "const": "quit" }, "ts": { "type": "string", "format": "date-time" }, "nick": { "type": "string", "description": "The nick that quit." }, "reason": { "type": "string", "description": "Optional quit reason." } }, "required": ["id", "type", "ts", "nick"] }