{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/join.schema.json", "title": "JOIN (S2C)", "description": "User joined a channel", "$ref": "../message.schema.json", "properties": { "command": { "const": "JOIN" }, "body": { "type": "array", "items": { "type": "string" }, "description": "Not used" } }, "required": [ "command", "from", "to" ] }