{
  "openapi": "3.0.3",
  "info": {
    "title": "SM Auto Jaipur Public API",
    "description": "API for submitting client export and parts inquiries directly to the SM Auto Jaipur sales desk.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://smautojpr.com"
    }
  ],
  "paths": {
    "/inquiry": {
      "post": {
        "summary": "Submit a business inquiry",
        "description": "Submits business inquiries directly to the SM Auto Jaipur exports desk.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Full name of the contact person."
                  },
                  "email": {
                    "type": "string",
                    "format": "email",
                    "description": "Email address for replies."
                  },
                  "company": {
                    "type": "string",
                    "description": "Name of the business entity."
                  },
                  "country": {
                    "type": "string",
                    "description": "Destination country for parts export."
                  },
                  "message": {
                    "type": "string",
                    "description": "Detailed inquiry text specifying parts required."
                  }
                },
                "required": ["name", "email", "message"]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Inquiry successfully recorded."
          }
        }
      }
    }
  }
}
