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

18 lines
348 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMAnnouncementResult",
"type": "object",
"additionalProperties": false,
"required": ["accepted"],
"properties": {
"accepted": {
"type": "boolean"
},
"messageId": {
"type": "string",
"minLength": 1,
"maxLength": 120
}
}
}