mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 13:35:22 +02:00
35 lines
841 B
JSON
35 lines
841 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"$id": "https://continwuity.org/schema/announcements.schema.json",
|
|
"type": "object",
|
|
"properties": {
|
|
"announcements": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"date": {
|
|
"type": "string"
|
|
},
|
|
"mention_room": {
|
|
"type": "boolean",
|
|
"description": "Whether to mention the room (@room) when posting this announcement"
|
|
}
|
|
},
|
|
"required": [
|
|
"id",
|
|
"message"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"announcements"
|
|
]
|
|
}
|