Fiber · Schema
Fiber App Configuration
JSON Schema for Fiber web framework application configuration (fiber.Config).
Microservices
Properties
| Name | Type | Description |
|---|---|---|
| Prefork | boolean | Enable prefork mode to spawn multiple processes. |
| ServerHeader | string | Value for the Server HTTP header. |
| StrictRouting | boolean | Treat /foo and /foo/ as different routes. |
| CaseSensitive | boolean | Enable case-sensitive routing. |
| Immutable | boolean | Return immutable context values. |
| UnescapePath | boolean | Unescape route path before matching. |
| ETag | boolean | Enable ETag header generation. |
| BodyLimit | integer | Maximum request body size in bytes (default 4MB). |
| Concurrency | integer | Maximum number of concurrent connections. |
| ReadTimeout | string | Read timeout duration (e.g., 5s, 1m). |
| WriteTimeout | string | Write timeout duration. |
| IdleTimeout | string | Idle connection timeout duration. |
| ReadBufferSize | integer | Per-connection read buffer size in bytes. |
| WriteBufferSize | integer | Per-connection write buffer size in bytes. |
| CompressedFileSuffix | string | Suffix for compressed static files. |
| ProxyHeader | string | Header to use for proxy IP (e.g., X-Forwarded-For). |
| GETOnly | boolean | Reject all non-GET requests. |
| DisableKeepalive | boolean | Disable keep-alive connections. |
| DisableDefaultDate | boolean | Disable default Date header. |
| DisableDefaultContentType | boolean | Disable default Content-Type header. |
| DisableHeaderNormalizing | boolean | Disable automatic header name normalization. |
| DisableStartupMessage | boolean | Disable startup banner message. |
| AppName | string | Application name. |
| StreamRequestBody | boolean | Enable streaming request body handling. |
| EnableTrustedProxyCheck | boolean | Enable trusted proxy checking. |
| TrustedProxies | array | List of trusted proxy IP addresses/ranges. |
| Network | string | Network type for the listener. |
| EnablePrintRoutes | boolean | Print all registered routes on startup. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/fiber/json-schema/fiber-configuration.json",
"title": "Fiber App Configuration",
"description": "JSON Schema for Fiber web framework application configuration (fiber.Config).",
"type": "object",
"properties": {
"Prefork": {
"type": "boolean",
"default": false,
"description": "Enable prefork mode to spawn multiple processes."
},
"ServerHeader": {
"type": "string",
"description": "Value for the Server HTTP header."
},
"StrictRouting": {
"type": "boolean",
"default": false,
"description": "Treat /foo and /foo/ as different routes."
},
"CaseSensitive": {
"type": "boolean",
"default": false,
"description": "Enable case-sensitive routing."
},
"Immutable": {
"type": "boolean",
"default": false,
"description": "Return immutable context values."
},
"UnescapePath": {
"type": "boolean",
"default": false,
"description": "Unescape route path before matching."
},
"ETag": {
"type": "boolean",
"default": false,
"description": "Enable ETag header generation."
},
"BodyLimit": {
"type": "integer",
"default": 4194304,
"description": "Maximum request body size in bytes (default 4MB)."
},
"Concurrency": {
"type": "integer",
"default": 262144,
"description": "Maximum number of concurrent connections."
},
"ReadTimeout": {
"type": "string",
"description": "Read timeout duration (e.g., 5s, 1m)."
},
"WriteTimeout": {
"type": "string",
"description": "Write timeout duration."
},
"IdleTimeout": {
"type": "string",
"description": "Idle connection timeout duration."
},
"ReadBufferSize": {
"type": "integer",
"default": 4096,
"description": "Per-connection read buffer size in bytes."
},
"WriteBufferSize": {
"type": "integer",
"default": 4096,
"description": "Per-connection write buffer size in bytes."
},
"CompressedFileSuffix": {
"type": "string",
"default": ".fiber.gz",
"description": "Suffix for compressed static files."
},
"ProxyHeader": {
"type": "string",
"description": "Header to use for proxy IP (e.g., X-Forwarded-For)."
},
"GETOnly": {
"type": "boolean",
"default": false,
"description": "Reject all non-GET requests."
},
"DisableKeepalive": {
"type": "boolean",
"default": false,
"description": "Disable keep-alive connections."
},
"DisableDefaultDate": {
"type": "boolean",
"default": false,
"description": "Disable default Date header."
},
"DisableDefaultContentType": {
"type": "boolean",
"default": false,
"description": "Disable default Content-Type header."
},
"DisableHeaderNormalizing": {
"type": "boolean",
"default": false,
"description": "Disable automatic header name normalization."
},
"DisableStartupMessage": {
"type": "boolean",
"default": false,
"description": "Disable startup banner message."
},
"AppName": {
"type": "string",
"description": "Application name."
},
"StreamRequestBody": {
"type": "boolean",
"default": false,
"description": "Enable streaming request body handling."
},
"EnableTrustedProxyCheck": {
"type": "boolean",
"default": false,
"description": "Enable trusted proxy checking."
},
"TrustedProxies": {
"type": "array",
"items": { "type": "string" },
"description": "List of trusted proxy IP addresses/ranges."
},
"Network": {
"type": "string",
"enum": ["tcp", "tcp4", "tcp6"],
"default": "tcp4",
"description": "Network type for the listener."
},
"EnablePrintRoutes": {
"type": "boolean",
"default": false,
"description": "Print all registered routes on startup."
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/fiber-configuration"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.