title: request-validation keywords:
import Tabs from ‘@theme/Tabs’; import TabItem from ‘@theme/TabItem’;
The request-validation Plugin validates requests before forwarding them to Upstream services. This Plugin uses JSON Schema for validation and can validate headers and body of a request.
See JSON schema specification to learn more about the syntax.
| Name | Type | Required | Default | Valid values | Description |
|---|---|---|---|---|---|
| header_schema | object | False | Schema for the request header data. | ||
| body_schema | object | False | Schema for the request body data. | ||
| rejected_code | integer | False | 400 | [200,...,599] | Status code to return when rejecting requests. |
| rejected_msg | string | False | Message to return when rejecting requests. |
:::note
At least one of header_schema or body_schema should be filled in.
:::
The examples below demonstrate how you can configure request-validation for different scenarios.
:::note
You can fetch the admin_key from config.yaml and save to an environment variable with the following command:
admin_key=$(yq '.deployment.admin.admin_key[0].key' conf/config.yaml | sed 's/"//g')
:::
The following example demonstrates how to validate request headers against a defined JSON schema, which requires two specific headers and the header value to conform to specified requirements.
Create a Route with request-validation Plugin as follows:
<Tabs groupId=“api” defaultValue=“admin-api” values={[ {label: ‘Admin API’, value: ‘admin-api’}, {label: ‘ADC’, value: ‘adc’}, {label: ‘Ingress Controller’, value: ‘aic’} ]}>
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \ -H "X-API-KEY: ${admin_key}" \ -d '{ "id": "request-validation-route", "uri": "/get", "plugins": { "request-validation": { "header_schema": { "type": "object", "required": ["User-Agent", "Host"], "properties": { "User-Agent": { "type": "string", "pattern": "^curl\/" }, "Host": { "type": "string", "enum": ["httpbin.org", "httpbin"] } } } } }, "upstream": { "type": "roundrobin", "nodes": { "httpbin.org:80": 1 } } }'
services: - name: request-validation-service routes: - name: request-validation-route uris: - /get plugins: request-validation: header_schema: type: object required: - User-Agent - Host properties: User-Agent: type: string pattern: "^curl/" Host: type: string enum: - httpbin.org - httpbin upstream: type: roundrobin nodes: - host: httpbin.org port: 80 weight: 1
Synchronize the configuration to the gateway:
adc sync -f adc.yaml
<Tabs groupId=“k8s-api” defaultValue=“gateway-api” values={[ {label: ‘Gateway API’, value: ‘gateway-api’}, {label: ‘APISIX CRD’, value: ‘apisix-crd’} ]}>
apiVersion: v1 kind: Service metadata: namespace: aic name: httpbin-external-domain spec: type: ExternalName externalName: httpbin.org --- apiVersion: apisix.apache.org/v1alpha1 kind: PluginConfig metadata: namespace: aic name: request-validation-plugin-config spec: plugins: - name: request-validation config: header_schema: type: object required: - User-Agent - Host properties: User-Agent: type: string pattern: "^curl/" Host: type: string enum: - httpbin.org - httpbin --- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: namespace: aic name: request-validation-route spec: parentRefs: - name: apisix rules: - matches: - path: type: Exact value: /get filters: - type: ExtensionRef extensionRef: group: apisix.apache.org kind: PluginConfig name: request-validation-plugin-config backendRefs: - name: httpbin-external-domain port: 80
apiVersion: apisix.apache.org/v2 kind: ApisixUpstream metadata: namespace: aic name: httpbin-external-domain spec: ingressClassName: apisix externalNodes: - type: Domain name: httpbin.org --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: namespace: aic name: request-validation-route spec: ingressClassName: apisix http: - name: request-validation-route match: paths: - /get upstreams: - name: httpbin-external-domain plugins: - name: request-validation enable: true config: header_schema: type: object required: - User-Agent - Host properties: User-Agent: type: string pattern: "^curl/" Host: type: string enum: - httpbin.org - httpbin
Apply the configuration to your cluster:
kubectl apply -f request-validation-ic.yaml
❶ required: require requests to include the specified headers.
❷ properties: require headers to conform to the specified requirements.
Send a request with header Host: httpbin, which complies with the schema:
curl -i "http://127.0.0.1:9080/get" -H "Host: httpbin"
You should receive an HTTP/1.1 200 OK response similar to the following:
{ "args": {}, "headers": { "Accept": "*/*", "Host": "httpbin", "User-Agent": "curl/7.74.0", "X-Amzn-Trace-Id": "Root=1-6509ae35-63d1e0fd3934e3f221a95dd8", "X-Forwarded-Host": "httpbin" }, "origin": "127.0.0.1, 183.17.233.107", "url": "http://httpbin/get" }
Send a request without any header:
curl -i "http://127.0.0.1:9080/get"
You should receive an HTTP/1.1 400 Bad Request response, showing that the request fails to pass validation:
property "Host" validation failed: matches none of the enum value
Send a request with the required headers but with non-conformant header value:
curl -i "http://127.0.0.1:9080/get" -H "Host: httpbin" -H "User-Agent: cli-mock"
You should receive an HTTP/1.1 400 Bad Request response showing the User-Agent header value does not match the expected pattern:
property "User-Agent" validation failed: failed to match pattern "^curl/" with "cli-mock"
The following example demonstrates how to customize response status and message when the validation fails.
Configure the Route with request-validation as follows:
<Tabs groupId=“api” defaultValue=“admin-api” values={[ {label: ‘Admin API’, value: ‘admin-api’}, {label: ‘ADC’, value: ‘adc’}, {label: ‘Ingress Controller’, value: ‘aic’} ]}>
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \ -H "X-API-KEY: ${admin_key}" \ -d '{ "id": "request-validation-route", "uri": "/get", "plugins": { "request-validation": { "header_schema": { "type": "object", "required": ["Host"], "properties": { "Host": { "type": "string", "enum": ["httpbin.org", "httpbin"] } } }, "rejected_code": 403, "rejected_msg": "Request header validation failed." } }, "upstream": { "type": "roundrobin", "nodes": { "httpbin.org:80": 1 } } }'
services: - name: request-validation-service routes: - name: request-validation-route uris: - /get plugins: request-validation: header_schema: type: object required: - Host properties: Host: type: string enum: - httpbin.org - httpbin rejected_code: 403 rejected_msg: "Request header validation failed." upstream: type: roundrobin nodes: - host: httpbin.org port: 80 weight: 1
Synchronize the configuration to the gateway:
adc sync -f adc.yaml
<Tabs groupId=“k8s-api” defaultValue=“gateway-api” values={[ {label: ‘Gateway API’, value: ‘gateway-api’}, {label: ‘APISIX CRD’, value: ‘apisix-crd’} ]}>
apiVersion: v1 kind: Service metadata: namespace: aic name: httpbin-external-domain spec: type: ExternalName externalName: httpbin.org --- apiVersion: apisix.apache.org/v1alpha1 kind: PluginConfig metadata: namespace: aic name: request-validation-plugin-config spec: plugins: - name: request-validation config: header_schema: type: object required: - Host properties: Host: type: string enum: - httpbin.org - httpbin rejected_code: 403 rejected_msg: "Request header validation failed." --- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: namespace: aic name: request-validation-route spec: parentRefs: - name: apisix rules: - matches: - path: type: Exact value: /get filters: - type: ExtensionRef extensionRef: group: apisix.apache.org kind: PluginConfig name: request-validation-plugin-config backendRefs: - name: httpbin-external-domain port: 80
apiVersion: apisix.apache.org/v2 kind: ApisixUpstream metadata: namespace: aic name: httpbin-external-domain spec: ingressClassName: apisix externalNodes: - type: Domain name: httpbin.org --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: namespace: aic name: request-validation-route spec: ingressClassName: apisix http: - name: request-validation-route match: paths: - /get upstreams: - name: httpbin-external-domain plugins: - name: request-validation enable: true config: header_schema: type: object required: - Host properties: Host: type: string enum: - httpbin.org - httpbin rejected_code: 403 rejected_msg: "Request header validation failed."
Apply the configuration to your cluster:
kubectl apply -f request-validation-ic.yaml
❶ rejected_code: customize rejection code.
❷ rejected_msg: customize rejection message.
Send a request with a misconfigured Host in the header:
curl -i "http://127.0.0.1:9080/get" -H "Host: httpbin2"
You should receive an HTTP/1.1 403 Forbidden response with the custom message:
Request header validation failed.
The following example demonstrates how to validate request body against a defined JSON schema.
The request-validation Plugin supports validation of two types of media types:
application/jsonapplication/x-www-form-urlencodedCreate a Route with request-validation Plugin as follows:
<Tabs groupId=“api” defaultValue=“admin-api” values={[ {label: ‘Admin API’, value: ‘admin-api’}, {label: ‘ADC’, value: ‘adc’}, {label: ‘Ingress Controller’, value: ‘aic’} ]}>
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \ -H "X-API-KEY: ${admin_key}" \ -d '{ "id": "request-validation-route", "uri": "/post", "plugins": { "request-validation": { "header_schema": { "type": "object", "required": ["Content-Type"], "properties": { "Content-Type": { "type": "string", "pattern": "^application\/json$" } } }, "body_schema": { "type": "object", "required": ["required_payload"], "properties": { "required_payload": {"type": "string"}, "boolean_payload": {"type": "boolean"}, "array_payload": { "type": "array", "minItems": 1, "items": { "type": "integer", "minimum": 200, "maximum": 599 }, "uniqueItems": true, "default": [200] } } } } }, "upstream": { "type": "roundrobin", "nodes": { "httpbin.org:80": 1 } } }'
services: - name: request-validation-service routes: - name: request-validation-route uris: - /post plugins: request-validation: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/json$" body_schema: type: object required: - required_payload properties: required_payload: type: string boolean_payload: type: boolean array_payload: type: array minItems: 1 items: type: integer minimum: 200 maximum: 599 uniqueItems: true default: - 200 upstream: type: roundrobin nodes: - host: httpbin.org port: 80 weight: 1
Synchronize the configuration to the gateway:
adc sync -f adc.yaml
<Tabs groupId=“k8s-api” defaultValue=“gateway-api” values={[ {label: ‘Gateway API’, value: ‘gateway-api’}, {label: ‘APISIX CRD’, value: ‘apisix-crd’} ]}>
apiVersion: v1 kind: Service metadata: namespace: aic name: httpbin-external-domain spec: type: ExternalName externalName: httpbin.org --- apiVersion: apisix.apache.org/v1alpha1 kind: PluginConfig metadata: namespace: aic name: request-validation-plugin-config spec: plugins: - name: request-validation config: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/json$" body_schema: type: object required: - required_payload properties: required_payload: type: string boolean_payload: type: boolean array_payload: type: array minItems: 1 items: type: integer minimum: 200 maximum: 599 uniqueItems: true default: - 200 --- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: namespace: aic name: request-validation-route spec: parentRefs: - name: apisix rules: - matches: - path: type: Exact value: /post filters: - type: ExtensionRef extensionRef: group: apisix.apache.org kind: PluginConfig name: request-validation-plugin-config backendRefs: - name: httpbin-external-domain port: 80
apiVersion: apisix.apache.org/v2 kind: ApisixUpstream metadata: namespace: aic name: httpbin-external-domain spec: ingressClassName: apisix externalNodes: - type: Domain name: httpbin.org --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: namespace: aic name: request-validation-route spec: ingressClassName: apisix http: - name: request-validation-route match: paths: - /post upstreams: - name: httpbin-external-domain plugins: - name: request-validation enable: true config: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/json$" body_schema: type: object required: - required_payload properties: required_payload: type: string boolean_payload: type: boolean array_payload: type: array minItems: 1 items: type: integer minimum: 200 maximum: 599 uniqueItems: true default: - 200
Apply the configuration to your cluster:
kubectl apply -f request-validation-ic.yaml
Send a request with JSON body that conforms to the schema to verify:
curl -i "http://127.0.0.1:9080/post" -X POST \ -H "Content-Type: application/json" \ -d '{"required_payload":"hello", "array_payload":[301]}'
You should receive an HTTP/1.1 200 OK response similar to the following:
{ "args": {}, "data": "{\"array_payload\":[301],\"required_payload\":\"hello\"}", "files": {}, "form": {}, "headers": { ... }, "json": { "array_payload": [ 301 ], "required_payload": "hello" }, "origin": "127.0.0.1, 183.17.233.107", "url": "http://127.0.0.1/post" }
If you send a request without specifying Content-Type: application/json:
curl -i "http://127.0.0.1:9080/post" -X POST \ -d '{"required_payload":"hello,world"}'
You should receive an HTTP/1.1 400 Bad Request response similar to the following:
property "Content-Type" validation failed: failed to match pattern "^application/json$" with "application/x-www-form-urlencoded"
Similarly, if you send a request without the required JSON field required_payload:
curl -i "http://127.0.0.1:9080/post" -X POST \ -H "Content-Type: application/json" \ -d '{}'
You should receive an HTTP/1.1 400 Bad Request response:
property "required_payload" is required
Create a Route with request-validation Plugin as follows:
<Tabs groupId=“api” defaultValue=“admin-api” values={[ {label: ‘Admin API’, value: ‘admin-api’}, {label: ‘ADC’, value: ‘adc’}, {label: ‘Ingress Controller’, value: ‘aic’} ]}>
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \ -H "X-API-KEY: ${admin_key}" \ -d '{ "id": "request-validation-route", "uri": "/post", "plugins": { "request-validation": { "header_schema": { "type": "object", "required": ["Content-Type"], "properties": { "Content-Type": { "type": "string", "pattern": "^application\/x-www-form-urlencoded$" } } }, "body_schema": { "type": "object", "required": ["required_payload","enum_payload"], "properties": { "required_payload": {"type": "string"}, "enum_payload": { "type": "string", "enum": ["enum_string_1", "enum_string_2"], "default": "enum_string_1" } } } } }, "upstream": { "type": "roundrobin", "nodes": { "httpbin.org:80": 1 } } }'
services: - name: request-validation-service routes: - name: request-validation-route uris: - /post plugins: request-validation: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/x-www-form-urlencoded$" body_schema: type: object required: - required_payload - enum_payload properties: required_payload: type: string enum_payload: type: string enum: - enum_string_1 - enum_string_2 default: enum_string_1 upstream: type: roundrobin nodes: - host: httpbin.org port: 80 weight: 1
Synchronize the configuration to the gateway:
adc sync -f adc.yaml
<Tabs groupId=“k8s-api” defaultValue=“gateway-api” values={[ {label: ‘Gateway API’, value: ‘gateway-api’}, {label: ‘APISIX CRD’, value: ‘apisix-crd’} ]}>
apiVersion: v1 kind: Service metadata: namespace: aic name: httpbin-external-domain spec: type: ExternalName externalName: httpbin.org --- apiVersion: apisix.apache.org/v1alpha1 kind: PluginConfig metadata: namespace: aic name: request-validation-plugin-config spec: plugins: - name: request-validation config: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/x-www-form-urlencoded$" body_schema: type: object required: - required_payload - enum_payload properties: required_payload: type: string enum_payload: type: string enum: - enum_string_1 - enum_string_2 default: enum_string_1 --- apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: namespace: aic name: request-validation-route spec: parentRefs: - name: apisix rules: - matches: - path: type: Exact value: /post filters: - type: ExtensionRef extensionRef: group: apisix.apache.org kind: PluginConfig name: request-validation-plugin-config backendRefs: - name: httpbin-external-domain port: 80
apiVersion: apisix.apache.org/v2 kind: ApisixUpstream metadata: namespace: aic name: httpbin-external-domain spec: ingressClassName: apisix externalNodes: - type: Domain name: httpbin.org --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: namespace: aic name: request-validation-route spec: ingressClassName: apisix http: - name: request-validation-route match: paths: - /post upstreams: - name: httpbin-external-domain plugins: - name: request-validation enable: true config: header_schema: type: object required: - Content-Type properties: Content-Type: type: string pattern: "^application/x-www-form-urlencoded$" body_schema: type: object required: - required_payload - enum_payload properties: required_payload: type: string enum_payload: type: string enum: - enum_string_1 - enum_string_2 default: enum_string_1
Apply the configuration to your cluster:
kubectl apply -f request-validation-ic.yaml
Send a request with URL-encoded form data to verify:
curl -i "http://127.0.0.1:9080/post" -X POST \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "required_payload=hello&enum_payload=enum_string_1"
You should receive an HTTP/1.1 200 OK response similar to the following:
{ "args": {}, "data": "", "files": {}, "form": { "enum_payload": "enum_string_1", "required_payload": "hello" }, "headers": { ... }, "json": null, "origin": "127.0.0.1, 183.17.233.107", "url": "http://127.0.0.1/post" }
Send a request without the URL-encoded field enum_payload:
curl -i "http://127.0.0.1:9080/post" -X POST \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "required_payload=hello"
You should receive an HTTP/1.1 400 Bad Request of the following:
property "enum_payload" is required
The following section provides boilerplate JSON schema for you to adjust, combine, and use with this Plugin. For a complete reference, see JSON schema specification.
{ "body_schema": { "type": "object", "required": ["enum_payload"], "properties": { "enum_payload": { "type": "string", "enum": ["enum_string_1", "enum_string_2"], "default": "enum_string_1" } } } }
{ "body_schema": { "type": "object", "required": ["bool_payload"], "properties": { "bool_payload": { "type": "boolean", "default": true } } } }
{ "body_schema": { "type": "object", "required": ["integer_payload"], "properties": { "integer_payload": { "type": "integer", "minimum": 1, "maximum": 65535 } } } }
{ "body_schema": { "type": "object", "required": ["string_payload"], "properties": { "string_payload": { "type": "string", "minLength": 1, "maxLength": 32 } } } }
{ "body_schema": { "type": "object", "required": ["regex_payload"], "properties": { "regex_payload": { "type": "string", "minLength": 1, "maxLength": 32, "pattern": "[[^[a-zA-Z0-9_]+$]]" } } } }
{ "body_schema": { "type": "object", "required": ["array_payload"], "properties": { "array_payload": { "type": "array", "minItems": 1, "items": { "type": "integer", "minimum": 200, "maximum": 599 }, "uniqueItems": true, "default": [200, 302] } } } }