{
  "post": {
    "tags": ["AI"],
    "summary": "Generate images from prompt",
    "security": [
      {
        "ApiKeyAuth": []
      }
    ],
    "requestBody": {
      "required": true,
      "content": {
        "application/json": {
          "schema": {
            "$ref": "../../components/schemas/GenerateImageSchema.json#/request"
          }
        }
      }
    },
    "responses": {
      "200": {
        "summary": "Successful Operation.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "message": {
                  "type": "string",
                  "example": "Image generated successfully"
                },
                "data": {
                  "$ref": "../../components/schemas/GenerateImageSchema.json#/response/200"
                }
              }
            }
          }
        }
      }
    }
  }
}
