runnerty-notificator-console
Version:
Runnerty module: Console notificator (old)
36 lines • 660 B
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "@runnerty-notificator-console",
"definitions": {
"config": {
"type": "object",
"required": [
"id",
"type"
],
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"pattern": "@runnerty-notificator-console"
}
}
},
"params": {
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type":"string"
},
"mode": {
"type": "string"
}
}
}
}
}