{ "type": "object", "required": [ "markerName", "decisionTaskCompletedEventId" ], "properties": { "markerName": { "allOf": [ { "$ref": "#/components/schemas/MarkerName" }, { "description": "The name of the marker." } ] }, "details": { "allOf": [ { "$ref": "#/components/schemas/Data" }, { "description": "The details of the marker." } ] }, "decisionTaskCompletedEventId": { "allOf": [ { "$ref": "#/components/schemas/EventId" }, { "description": "The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the RecordMarker decision that requested this marker. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event." } ] } }, "description": "Provides the details of the MarkerRecorded event.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "MarkerRecordedEventAttributes" }