{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2s/relay.schema.json", "title": "RELAY (S2S)", "description": "Relay message to linked server", "$ref": "../message.schema.json", "properties": { "command": { "const": "RELAY" }, "body": { "type": "object", "description": "Wrapped message" } }, "required": [ "command", "body" ] }