15 lines
306 B
JSON
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
|
|
}
|
|
}
|
|
}
|