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