{
  "openapi": "3.1.0",
  "info": {
    "title": "AIPUfy API",
    "version": "1.0.0",
    "description": "AIPUfy helps SMBs transform critical business processes into AI-powered operations using the Process-to-AI™ methodology.",
    "contact": {
      "name": "AIPUfy Team",
      "email": "hello@aipufy.ai",
      "url": "https://aipufy.ai"
    }
  },
  "servers": [
    { "url": "https://aipufy.ai", "description": "Production" }
  ],
  "paths": {
    "/functions/submitContactForm": {
      "post": {
        "operationId": "submitContactForm",
        "summary": "Submit a contact inquiry",
        "description": "Submit a contact request to AIPUfy's team. Use this when a user wants to get in touch, request a consultation, or learn more about AI transformation services.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": ["full_name", "email"],
                "properties": {
                  "full_name": { "type": "string", "description": "Full name of the contact" },
                  "email": { "type": "string", "format": "email", "description": "Email address" },
                  "company": { "type": "string", "description": "Company name" },
                  "industry": { "type": "string", "description": "Industry sector" },
                  "role": { "type": "string", "description": "Job role or position" },
                  "message": { "type": "string", "description": "Message or inquiry details" }
                }
              }
            }
          }
        },
        "responses": {
          "200": { "description": "Contact inquiry submitted successfully" }
        }
      }
    }
  }
}
