{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "draft_outreach_message request",
  "type": "object",
  "properties": {
    "draft_type": {
      "type": "string",
      "enum": ["warm_intro_request", "investor_first_touch", "follow_up", "customer_intro_request"]
    },
    "channel": {
      "type": "string",
      "enum": ["email", "dm", "text"]
    },
    "community_slug": { "type": "string" },
    "investor_id": { "type": "string" },
    "investor_name": { "type": "string" },
    "investor_firm": { "type": "string" },
    "connector_name": { "type": "string" },
    "founder_name": { "type": "string" },
    "company_name": { "type": "string" },
    "product_summary": { "type": "string" },
    "customer_description": { "type": "string" },
    "problem": { "type": "string" },
    "reason_fit": { "type": "string" },
    "traction": { "type": "string" },
    "why_now": { "type": "string" },
    "ask": { "type": "string" },
    "additional_context": { "type": "string" }
  },
  "required": ["draft_type", "channel"]
}
