{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2s/pong.json", "title": "S2S Pong", "description": "Inter-server keepalive response.", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "type": { "const": "pong" }, "ts": { "type": "string", "format": "date-time" }, "origin": { "type": "string", "description": "Responding server." }, "token": { "type": "string", "description": "Echoed token from the ping." } }, "required": ["id", "type", "ts", "origin"] }