{
  "openapi": "3.1.0",
  "info": {
    "title": "Driller Design Co. Lead API",
    "description": "API for submitting leads and consultation requests to Driller Design Co.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://drillerdesign.com"
    }
  ],
  "paths": {
    "/api/contact": {
      "post": {
        "operationId": "submitLead",
        "summary": "Submit a new lead or consultation request",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Lead"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Lead submitted successfully"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Lead": {
        "type": "object",
        "required": ["name", "email"],
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the prospect"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address of the prospect"
          },
          "website": {
            "type": "string",
            "description": "Company website URL"
          },
          "budget": {
            "type": "string",
            "enum": ["Under $1,000/mo", "$1,000 – $2,500/mo", "$2,500 – $5,000/mo", "$5,000+/mo", "Not sure yet"],
            "description": "Estimated monthly marketing budget"
          },
          "message": {
            "type": "string",
            "description": "Details about the project or challenges"
          },
          "source": {
            "type": "string",
            "description": "Source of the lead",
            "default": "AI Agent"
          },
          "company_website": {
            "type": "string",
            "description": "Honeypot field - OMIT ENTIRELY"
          },
          "botcheck": {
            "type": "string",
            "description": "Honeypot field - OMIT ENTIRELY"
          }
        }
      }
    }
  }
}
