Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Release/r158 #1403

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 158 (2024-06-11)
------------------------
Add com.snowplowanalytics.snowplow/failure/jsonschema/1-0-0 (#1402)

Release 157 (2024-04-02)
------------------------
Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2 (#1398)
46 changes: 46 additions & 0 deletions schemas/com.snowplowanalytics.snowplow/failure/jsonschema/1-0-0
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"self": {
"vendor": "com.snowplowanalytics.snowplow",
"name": "failure",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"failureType": {
"type": "string",
"description": "Classification of the failure. For example, validation error."
},
"errors": {
"type": "array",
"items": {
"type": "object"
},
"description": "A list of errors encountered, and supporting information about the error. Each entry should always have at least a message field and a source field."
},
"schema": {
"type": ["string", "null"],
"description": "The schema for the object which caused the failure, if it was self-descrbing."
},
"data": {
"type": ["object", "null"],
"additionalProperties": true,
"description": "The original data object which caused the failure."
},
"timestamp": {
"type": "string",
"description": "Timestamp at which the failure occurred",
"format": "date-time"
},
"componentName": {
"type": "string",
"description": "Name of the component which produced the failure"
},
"componentVersion": {
"type": "string",
"description": "Version of the component which produced the failure"
}
},
"required": ["failureType", "errors", "timestamp", "componentName", "componentVersion"]
}