You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/fields/index.yaml
+41Lines changed: 41 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -455,6 +455,47 @@ entries:
455
455
456
456
**Note**: This raw field may include some basic normalization done by Cloudflare's HTTP server. However, this can change in the future.
457
457
458
+
- name: raw.http.response.headers
459
+
data_type: Map<Array<String>>
460
+
categories: [Response, Headers, Raw fields]
461
+
keywords: [response, raw]
462
+
summary: The HTTP response headers without any transformation represented as a Map (or associative array).
463
+
description: |-
464
+
This is the raw field version of the [`http.response.headers`](/ruleset-engine/rules-language/fields/reference/http.response.headers/) field. Raw fields, prefixed with `raw.`, preserve original response values for later evaluations. These fields are immutable during the entire request evaluation workflow, and they are not affected by the actions of previously matched rules.
summary: The names of the headers in the HTTP response without any transformation.
475
+
description: |-
476
+
This is the raw field version of the [`http.response.headers.names`](/ruleset-engine/rules-language/fields/reference/http.response.headers.names/) field. Raw fields, prefixed with `raw.`, preserve original response values for later evaluations. These fields are immutable during the entire request evaluation workflow, and they are not affected by the actions of previously matched rules.
summary: The values of the headers in the HTTP response without any transformation.
487
+
description: |-
488
+
This is the raw field version of the [`http.response.headers.values`](/ruleset-engine/rules-language/fields/reference/http.response.headers.values/) field. Raw fields, prefixed with `raw.`, preserve original response values for later evaluations. These fields are immutable during the entire request evaluation workflow, and they are not affected by the actions of previously matched rules.
489
+
example_value: |-
490
+
Example 1: ["application/json"]
491
+
Example 2: ["This header value is longer than 10 bytes"]
0 commit comments