Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
olksdr committed Jan 2, 2024
1 parent e9f7d58 commit 5b3e3ee
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions relay/event.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,41 @@
}
]
},
"Data": {
"description": " The arbitrary data on the trace.",
"anyOf": [
{
"type": "object",
"properties": {
"previousRoute": {
"description": " The previous route in the application\n\n Set by React Native SDK.",
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Route"
},
{
"type": "null"
}
]
},
"route": {
"description": " The current route in the application.\n\n Set by React Native SDK.",
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Route"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
}
]
},
"DebugId": {
"type": "string"
},
Expand Down Expand Up @@ -3210,6 +3245,26 @@
}
]
},
"Route": {
"description": " The route in the application, set by React Native SDK.",
"anyOf": [
{
"type": "object",
"properties": {
"params": {
"description": " Parameters assigned to this route.",
"default": null,
"type": [
"object",
"null"
],
"additionalProperties": true
}
},
"additionalProperties": false
}
]
},
"RuntimeContext": {
"description": " Runtime information.\n\n Runtime context describes a runtime in more detail. Typically, this context is present in\n `contexts` multiple times if multiple runtimes are involved (for instance, if you have a\n JavaScript application running on top of JVM).",
"anyOf": [
Expand Down Expand Up @@ -3575,6 +3630,18 @@
],
"format": "double"
},
"data": {
"description": " Arbitrary additional data on a trace.",
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Data"
},
{
"type": "null"
}
]
},
"exclusive_time": {
"description": " The amount of time in milliseconds spent in this transaction span,\n excluding its immediate child spans.",
"default": null,
Expand Down

0 comments on commit 5b3e3ee

Please sign in to comment.