{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/nick.json", "title": "S2C Nick", "description": "A user changed their nickname.", "type": "object", "properties": { "id": { "type": "integer" }, "type": { "const": "nick" }, "ts": { "type": "string", "format": "date-time" }, "oldNick": { "type": "string", "description": "Previous nickname." }, "newNick": { "type": "string", "description": "New nickname." } }, "required": ["id", "type", "ts", "oldNick", "newNick"] }