ApiSchemas
SessionTrace
One shape from the contract, as it appears on the wire.
Used by traces.forSession
JSON Schema
{
"type": "object",
"properties": {
"traceId": {
"$ref": "#/components/schemas/TraceId"
},
"spans": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Span"
}
},
"store": {
"$ref": "#/components/schemas/SpanStoreKind"
},
"prunedAt": {
"type": "string"
}
},
"required": [
"spans"
],
"additionalProperties": false
}