honeycomb · Schema

Marker

Properties

Name Type Description
id string Unique identifier for the marker.
start_time integer Unix timestamp in seconds for when the marker starts.
end_time integer Unix timestamp in seconds for when the marker ends. If omitted, the marker represents a single point in time.
message string A message describing the marker event.
type string The type of the marker, used to group related markers.
url string A URL associated with the marker event.
created_at string ISO8601 formatted time the marker was created.
updated_at string ISO8601 formatted time the marker was last updated.
View JSON Schema on GitHub

JSON Schema

honeycomb-marker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Marker",
  "title": "Marker",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the marker."
    },
    "start_time": {
      "type": "integer",
      "description": "Unix timestamp in seconds for when the marker starts."
    },
    "end_time": {
      "type": "integer",
      "description": "Unix timestamp in seconds for when the marker ends. If omitted, the marker represents a single point in time."
    },
    "message": {
      "type": "string",
      "description": "A message describing the marker event."
    },
    "type": {
      "type": "string",
      "description": "The type of the marker, used to group related markers."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "A URL associated with the marker event."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO8601 formatted time the marker was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO8601 formatted time the marker was last updated."
    }
  }
}