-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1365 from snowplow/release/r151
Release R151
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
schemas/com.snowplowanalytics.monitoring.loader/alert/jsonschema/1-0-0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |