Skip to content

Commit b476ada

Browse files
committed
1 parent 479b57b commit b476ada

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

relay/event.schema.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,6 +1014,9 @@
10141014
{
10151015
"$ref": "#/definitions/SourceMapDebugImage"
10161016
},
1017+
{
1018+
"$ref": "#/definitions/JvmDebugImage"
1019+
},
10171020
{
10181021
"type": "object",
10191022
"additionalProperties": true
@@ -2010,6 +2013,31 @@
20102013
}
20112014
]
20122015
},
2016+
"JvmDebugImage": {
2017+
"description": " A debug image consisting of source files for a JVM based language.\n\n Examples:\n\n ```json\n {\n \"type\": \"jvm\",\n \"debug_id\": \"395835f4-03e0-4436-80d3-136f0749a893\"\n }\n ```",
2018+
"anyOf": [
2019+
{
2020+
"type": "object",
2021+
"required": [
2022+
"debug_id"
2023+
],
2024+
"properties": {
2025+
"debug_id": {
2026+
"description": " Unique debug identifier of the bundle.",
2027+
"anyOf": [
2028+
{
2029+
"$ref": "#/definitions/DebugId"
2030+
},
2031+
{
2032+
"type": "null"
2033+
}
2034+
]
2035+
}
2036+
},
2037+
"additionalProperties": false
2038+
}
2039+
]
2040+
},
20132041
"Level": {
20142042
"description": "Severity level of an event or breadcrumb.",
20152043
"type": "string",

0 commit comments

Comments
 (0)