Skip to content

Commit b52e63e

Browse files
apmmachineapmmachine
andauthored
synchronize json schema specs (#1094)
Co-authored-by: apmmachine <[email protected]>
1 parent 7d5d711 commit b52e63e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

tests/upstream/json-specs/transaction.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,31 @@
699699
"boolean"
700700
]
701701
},
702+
"session": {
703+
"description": "Session holds optional transaction session information for RUM.",
704+
"type": [
705+
"null",
706+
"object"
707+
],
708+
"properties": {
709+
"id": {
710+
"description": "ID holds a session ID for grouping a set of related transactions.",
711+
"type": "string",
712+
"maxLength": 1024
713+
},
714+
"sequence": {
715+
"description": "Sequence holds an optional sequence number for a transaction within a session. It is not meaningful to compare sequences across two different sessions.",
716+
"type": [
717+
"null",
718+
"integer"
719+
],
720+
"minimum": 1
721+
}
722+
},
723+
"required": [
724+
"id"
725+
]
726+
},
702727
"span_count": {
703728
"description": "SpanCount counts correlated spans.",
704729
"type": "object",

0 commit comments

Comments
 (0)