ApiSchemas
SpanEvent
One shape from the contract, as it appears on the wire.
Used by traces.forSession
Referenced from Span
JSON Schema
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"atMicros": {
"type": "integer",
"minimum": 0
},
"attributes": {
"$ref": "#/components/schemas/SpanAttributes"
}
},
"required": [
"name",
"atMicros",
"attributes"
],
"additionalProperties": false
}