{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssignProspectsRequest", "title": "AssignProspectsRequest", "type": "object", "required": [ "flowId", "prospects" ], "properties": { "flowId": { "type": "string", "description": "The ID of the Engage flow to assign prospects to." }, "prospects": { "type": "array", "items": { "$ref": "#/components/schemas/Prospect" }, "description": "List of prospects to assign." }, "senderEmail": { "type": "string", "format": "email", "description": "The email address to send flow messages from." } } }