{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamCloudEventOffsetOnlyMessage", "title": "EventStreamCloudEventOffsetOnlyMessage", "type": "object", "description": "An offset-only heartbeat message. Advances the cursor without delivering an event.", "additionalProperties": false, "required": [ "type", "offset" ], "properties": { "type": { "$ref": "#/components/schemas/EventStreamCloudEventOffsetOnlyMessageTypeEnum" }, "offset": { "type": "string", "description": "Opaque cursor representing the latest position in the stream. Pass as the `from` query parameter to resume." } } }