{
  "source": "middleware.js",
  "method": "raw",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "type": {
        "type": "array",
        "description": "What media type the middleware will parse. Can be an extension name (like bin), a mime type (like application/octet-stream), or a mime type with a wildcard (like */* or application/*).",
        "items": {
          "type": "string",
          "title": "type",
          "enum": ["application/octet-stream", "bin", "txt", "pdf", "jpg", "application/pdf", "application/*", "text/*", "image/*", "audio/*", "*/*"]
        }
      },
      "limit": {
        "type": "any",
        "description": "Controls the maximum request body size. Can be a number (number of bytes) or a string (e.g. '100kb')"
      }
    }
  },
  "output-schema": {
    "type": "any"
  },
  "meta": {
    "name": "raw",
    "isInterface": true,
    "description": "Parse request body as RAW Buffer or string.",
    "inherits": "core/http/middleware/interface"
  }
}