Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/announcement.payload.schema.json
T
2026-07-20 16:42:33 +08:00

15 lines
297 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMAnnouncementPayload",
"type": "object",
"additionalProperties": false,
"required": ["message"],
"properties": {
"message": {
"type": "string",
"minLength": 1,
"maxLength": 500
}
}
}