-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPluginErrorEvent.json
More file actions
46 lines (46 loc) · 1.08 KB
/
PluginErrorEvent.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$ref": "#/definitions/PluginErrorEvent",
"definitions": {
"PluginErrorEvent": {
"type": "object",
"properties": {
"pluginName": {
"type": "string",
"description": "Name of the plugin"
},
"timestamp": {
"type": "integer",
"description": "Unix timestamp in milliseconds when event occurred"
},
"error": {
"description": "Error object"
},
"phase": {
"type": "string",
"enum": [
"init",
"start",
"destroy"
],
"description": "Lifecycle phase where error occurred"
},
"errorMessage": {
"type": "string",
"description": "Error message"
},
"errorStack": {
"type": "string",
"description": "Error stack trace"
}
},
"required": [
"pluginName",
"timestamp",
"error",
"phase"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}