Skip to content

Commit

Permalink
Merge pull request #1365 from snowplow/release/r151
Browse files Browse the repository at this point in the history
Release R151
  • Loading branch information
jbeemster committed Dec 21, 2023
2 parents 12c3dad + 5eec2ab commit f89b6ae
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 151 (2023-12-21)
------------------------
Add com.snowplowanalytics.monitoring.loader/alert/jsonschema/1-0-0 (#1364)

Release 150 (2023-11-29)
------------------------
Add com.snowplowanalytics.snowplow/button_click/jsonschema/1-0-0 (#1351)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Webhook payload describing an alert coming from loader",
"self": {
"vendor": "com.snowplowanalytics.monitoring.loader",
"name": "alert",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"appName": {
"type": "string",
"maxLength": 64,
"description": "Application's name"
},
"appVersion": {
"type": "string",
"maxLength": 64,
"description": "Application's version"
},
"message": {
"description": "Free-form message describing the problem",
"maxLength": 4096,
"type": "string"
},
"tags": {
"description": "Set of key value pairs providing additional information",
"type": "object",
"additionalProperties": { "type": "string" }
}
},
"required": ["appName", "appVersion", "message", "tags"],
"additionalProperties": false
}

0 comments on commit f89b6ae

Please sign in to comment.