All checks were successful
Documentation / Build and Deploy Documentation (pull_request) Successful in 48s
Release Docker Image / define-variables (push) Successful in 1s
Documentation / Build and Deploy Documentation (push) Successful in 32s
Rust Checks / Format (push) Successful in 55s
Rust Checks / Clippy (push) Successful in 4m6s
Rust Checks / Cargo Test (push) Successful in 4m35s
Release Docker Image / build-image (linux/arm64, linux-arm64) (push) Successful in 11m6s
Release Docker Image / build-image (linux/amd64, linux-amd64) (push) Successful in 13m34s
Release Docker Image / merge (push) Successful in 23s
35 lines
No EOL
840 B
JSON
35 lines
No EOL
840 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"
|
|
]
|
|
} |