{
  "openapi": "3.1.0",
  "info": {
    "title": "Moesica Contact Action",
    "version": "1.0.0",
    "description": "Machine-readable description of the public contact inquiry action used by moesica.com."
  },
  "servers": [
    {
      "url": "https://api.web3forms.com",
      "description": "Web3Forms submission endpoint used by the public Moesica contact form."
    }
  ],
  "paths": {
    "/submit": {
      "post": {
        "operationId": "submitMoesicaInquiry",
        "summary": "Submit a Moesica project inquiry",
        "description": "Submits a public project inquiry from moesica.com.",
        "requestBody": {
          "required": true,
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "required": ["access_key", "name", "email", "message"],
                "properties": {
                  "access_key": {
                    "type": "string",
                    "description": "Public Web3Forms access key included in the site contact form."
                  },
                  "name": {
                    "type": "string",
                    "description": "Sender name."
                  },
                  "email": {
                    "type": "string",
                    "format": "email",
                    "description": "Sender email."
                  },
                  "message": {
                    "type": "string",
                    "description": "Business context, friction, and desired outcome."
                  },
                  "subject": {
                    "type": "string",
                    "description": "Email subject used by the form processor."
                  },
                  "from_name": {
                    "type": "string",
                    "description": "Display source name for the form processor."
                  },
                  "redirect": {
                    "type": "string",
                    "format": "uri",
                    "description": "Return URL after a successful submission."
                  },
                  "botcheck": {
                    "type": "string",
                    "description": "Hidden anti-bot field. Human submissions leave this empty."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Submission accepted by Web3Forms."
          },
          "400": {
            "description": "Submission rejected because required fields were missing or invalid."
          }
        }
      }
    }
  }
}
