{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.eeqj.de/sneak/chat/schema/s2c/part.json", "title": "S2C Part", "description": "A user left a channel.", "type": "object", "properties": { "id": { "type": "integer" }, "type": { "const": "part" }, "ts": { "type": "string", "format": "date-time" }, "nick": { "type": "string", "description": "The nick that left." }, "channel": { "type": "string", "pattern": "^#[a-zA-Z0-9_-]+$" }, "reason": { "type": "string", "description": "Optional part reason." } }, "required": ["id", "type", "ts", "nick", "channel"] }