| Parameter | Type | Description | Example |
|---|---|---|---|
| object | The route matching rule. | ||
| ignoreUriCase | boolean | Specifies whether the path is case-insensitive. | true |
| path | object | The path rule. | |
| type | string | The path matching type. Valid values:
| Prefix |
| value | string | The path. | /user |
| headers | array<object> | The rules for matching based on HTTP request headers. | |
| header | object | The rule. | |
| type | string | The match type. Valid values:
| Exact |
| name | string | The header name. | dev |
| value | string | The header value. | true |
| methods | array | The HTTP methods. | |
| method | string | The HTTP method. Valid values:
| GET |
| queryParams | array<object> | The rules for matching based on query parameters. | |
| queryParam | object | The rule. | |
| type | string | The match type. Valid values:
| Exact |
| name | string | The parameter name. | age |
| value | string | The parameter value. | 17 |