18 lines
348 B
JSON
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
|
|
}
|
|
}
|
|
}
|