{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2s/sync.schema.json", "title": "SYNC (S2S)", "description": "Synchronize state between servers", "$ref": "../message.schema.json", "properties": { "command": { "const": "SYNC" }, "body": { "type": "object", "description": "State data" } }, "required": [ "command", "body" ] }