{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/privmsg.schema.json", "title": "PRIVMSG (S2C)", "description": "Relayed message from a user", "$ref": "../message.schema.json", "properties": { "command": { "const": "PRIVMSG" }, "body": { "type": "array", "items": { "type": "string" }, "description": "Text lines" } }, "required": [ "command", "from", "to", "body" ] }