diff --git a/daprdocs/content/en/reference/components-reference/supported-middleware/middleware-opa.md b/daprdocs/content/en/reference/components-reference/supported-middleware/middleware-opa.md index 6d7fb81fa..3ecf58332 100644 --- a/daprdocs/content/en/reference/components-reference/supported-middleware/middleware-opa.md +++ b/daprdocs/content/en/reference/components-reference/supported-middleware/middleware-opa.md @@ -99,7 +99,7 @@ This middleware supplies a [`HTTPRequest`](#httprequest) as input. ### HTTPRequest -The `HTTPRequest` input contains all the relevant information about an incoming HTTP Request except it's body. +The `HTTPRequest` input contains all the relevant information about an incoming HTTP Request. ```go type Input struct { @@ -123,6 +123,8 @@ type HTTPRequest struct { headers map[string]string // The request scheme (e.g. http, https) scheme string + // The request body (e.g. http, https) + body string } ```