@runnerty/notificator-slack
Version:
Runnerty module: Slack notificator
69 lines • 1.31 kB
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "@runnerty-notificator-slack",
"definitions": {
"config": {
"type": "object",
"required": [
"id",
"type",
"webhookurl",
"channel"
],
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"pattern": "@runnerty-notificator-slack"
},
"webhookurl": {
"type": "string"
},
"channel": {
"type": "string"
},
"message": {
"type": "string"
},
"bot_name": {
"type": "string"
},
"bot_emoji": {
"type": "string"
}
}
},
"params": {
"type": "object",
"required": [
"id",
"message"
],
"properties": {
"id": {
"type": "string"
},
"channel": {
"type": "string"
},
"title": {
"type": "string"
},
"attachments": {
"type": "array"
},
"message": {
"type": "string"
},
"bot_emoji": {
"type": "string"
},
"color": {
"type": "string"
}
}
}
}
}