diff --git a/tests/upstream/json-specs/transaction.json b/tests/upstream/json-specs/transaction.json index 53a5c104f..997d85689 100644 --- a/tests/upstream/json-specs/transaction.json +++ b/tests/upstream/json-specs/transaction.json @@ -699,6 +699,31 @@ "boolean" ] }, + "session": { + "description": "Session holds optional transaction session information for RUM.", + "type": [ + "null", + "object" + ], + "properties": { + "id": { + "description": "ID holds a session ID for grouping a set of related transactions.", + "type": "string", + "maxLength": 1024 + }, + "sequence": { + "description": "Sequence holds an optional sequence number for a transaction within a session. It is not meaningful to compare sequences across two different sessions.", + "type": [ + "null", + "integer" + ], + "minimum": 1 + } + }, + "required": [ + "id" + ] + }, "span_count": { "description": "SpanCount counts correlated spans.", "type": "object",