Represents a workflow execution.
{ "type": "object", "required": [ "workflowId", "runId" ], "properties": { "workflowId": { "allOf": [ { "$ref": "#/components/schemas/WorkflowId" }, { "description": "The user defined identifier associated with the workflow execution." } ] }, "runId": { "allOf": [ { "$ref": "#/components/schemas/WorkflowRunId" }, { "description": "A system-generated unique identifier for the workflow execution." } ] } }, "description": "Represents a workflow execution.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "WorkflowExecution" }