Files
git.stella-ops.org/docs/notifications/schemas/notify-schemas-catalog.json

28 lines
743 B
JSON

{
"$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"]
}