fix tests. new product advisories enhancements
This commit is contained in:
27
docs/notifications/schemas/notify-schemas-catalog.json
Normal file
27
docs/notifications/schemas/notify-schemas-catalog.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user