fix tests. new product advisories enhancements

This commit is contained in:
master
2026-01-25 19:11:36 +02:00
parent c70e83719e
commit 6e687b523a
504 changed files with 40610 additions and 3785 deletions

View File

@@ -0,0 +1,27 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://docs.stella-ops.org/notifications/schemas/notify-schemas-catalog.json",
"title": "Notify Schemas Catalog",
"description": "Catalog of all notification schemas",
"type": "object",
"properties": {
"version": {
"type": "string",
"const": "1.0.0"
},
"schemas": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"version": { "type": "string" },
"description": { "type": "string" },
"path": { "type": "string" }
},
"required": ["name", "version", "path"]
}
}
},
"required": ["version", "schemas"]
}