{ "type": "object", "required": [ "domain", "workflowId", "signalName" ], "title": "SignalWorkflowExecutionInput", "properties": { "domain": { "allOf": [ { "$ref": "#/components/schemas/DomainName" }, { "description": "The name of the domain containing the workflow execution to signal." } ] }, "workflowId": { "allOf": [ { "$ref": "#/components/schemas/WorkflowId" }, { "description": "The workflowId of the workflow execution to signal." } ] }, "runId": { "allOf": [ { "$ref": "#/components/schemas/WorkflowRunIdOptional" }, { "description": "The runId of the workflow execution to signal." } ] }, "signalName": { "allOf": [ { "$ref": "#/components/schemas/SignalName" }, { "description": "The name of the signal. This name must be meaningful to the target workflow." } ] }, "input": { "allOf": [ { "$ref": "#/components/schemas/Data" }, { "description": "Data to attach to the WorkflowExecutionSignaled event in the target workflow execution's history." } ] } }, "$schema": "http://json-schema.org/draft-07/schema#" }