Files
chat/schema/c2s/send.json
user 065b243def docs: add JSON Schema definitions for all message types (draft 2020-12)
C2S (7): send, join, part, nick, topic, mode, ping
S2C (12): message, dm, notice, join, part, quit, nick, topic, mode, system, error, pong
S2S (6): relay, link, unlink, sync, ping, pong

Each message type has its own schema file under schema/{c2s,s2c,s2s}/.
schema/README.md provides an index of all types with descriptions.
2026-02-10 10:25:42 -08:00

23 lines
660 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://git.eeqj.de/sneak/chat/schema/c2s/send.json",
"title": "C2S Send",
"description": "Send a message to a channel or user. Submitted via POST /api/v1/messages.",
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "Target: channel name (prefixed with #) or nick for DM.",
"examples": ["#general", "alice"]
},
"content": {
"type": "string",
"description": "Message body (UTF-8 text).",
"minLength": 1,
"maxLength": 4096
}
},
"required": ["to", "content"],
"additionalProperties": false
}