honeycomb · Schema
MarkerUpdateRequest
Properties
| Name | Type | Description |
|---|---|---|
| start_time | integer | Updated Unix timestamp in seconds for the marker start. |
| end_time | integer | Updated Unix timestamp in seconds for the marker end. |
| message | string | An updated message describing the marker event. |
| type | string | An updated type for the marker. |
| url | string | An updated URL associated with the marker event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MarkerUpdateRequest",
"title": "MarkerUpdateRequest",
"type": "object",
"properties": {
"start_time": {
"type": "integer",
"description": "Updated Unix timestamp in seconds for the marker start."
},
"end_time": {
"type": "integer",
"description": "Updated Unix timestamp in seconds for the marker end."
},
"message": {
"type": "string",
"description": "An updated message describing the marker event."
},
"type": {
"type": "string",
"description": "An updated type for the marker."
},
"url": {
"type": "string",
"format": "uri",
"description": "An updated URL associated with the marker event."
}
}
}