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