Zipkin · JSON Structure

Zipkin Api V2 Annotation Structure

A latency-explaining event with a timestamp.

Type: object Properties: 2 Required: 2
Distributed TracingObservabilityOpen SourceMicroservices

Annotation is a JSON Structure definition published by Zipkin, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/schema/v0 meta-schema.

Properties

timestamp value

Meta-schema: https://json-structure.org/schema/v0

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/schema/v0",
  "name": "Annotation",
  "type": "object",
  "description": "A latency-explaining event with a timestamp.",
  "properties": {
    "timestamp": {"type": "integer", "description": "Epoch microseconds of this event"},
    "value": {"type": "string", "description": "Event value"}
  },
  "required": ["timestamp", "value"]
}