Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/announcement.payload.schema.json
T

15 lines
306 B
JSON

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