honeycomb · Schema

MarkerCreateRequest

Properties

Name Type Description
start_time integer Unix timestamp in seconds for the marker start. Defaults to current time if not provided.
end_time integer Unix timestamp in seconds for the marker end.
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.
View JSON Schema on GitHub

JSON Schema

honeycomb-markercreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MarkerCreateRequest",
  "title": "MarkerCreateRequest",
  "type": "object",
  "properties": {
    "start_time": {
      "type": "integer",
      "description": "Unix timestamp in seconds for the marker start. Defaults to current time if not provided."
    },
    "end_time": {
      "type": "integer",
      "description": "Unix timestamp in seconds for the marker end."
    },
    "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."
    }
  }
}